Merge pull request #522 from kzidane/console

fixed console resizing bug
pull/534/head
Dan Armendariz 2018-10-17 14:22:24 -07:00 zatwierdzone przez GitHub
commit c4d1c59dc8
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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");