Skip to content

Commit

Permalink
Merge pull request c9#522 from kzidane/console
Browse files Browse the repository at this point in the history
fixed console resizing bug
  • Loading branch information
Dan Armendariz authored Oct 17, 2018
2 parents e9490da + 3af8290 commit c4d1c59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/c9.ide.console/console.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ define(function(require, module, exports) {
// Track splitter and update state
var splitter = consoleRow.$handle;
splitter && splitter.on("dragdrop", function(e) {
height = Math.max(minHeight, container.height);
height = Math.max(minHeight, container.$ext.offsetHeight);
if (height)
settings.set("state/console/@height", height);
emit("resize");
Expand Down

0 comments on commit c4d1c59

Please sign in to comment.