[DE] repaired viewport's layers after cutted header off

This commit is contained in:
Maxim Kadushkin 2017-03-01 16:37:27 +03:00
parent a3a896ac79
commit 9707822f7c
2 changed files with 6 additions and 10 deletions

View file

@ -2754,8 +2754,8 @@ define([
this.toolbar.setFolded(f); this.toolbar.setFolded(f);
var viewport = this.getApplication().getController('Viewport').getView('Viewport'); var viewport = this.getApplication().getController('Viewport').getView('Viewport');
viewport.vlayout.items[1].rely = !f; viewport.vlayout.items[0].rely = !f;
viewport.vlayout.items[1].height = 42; viewport.vlayout.items[0].height = 42;
Common.NotificationCenter.trigger('layout:changed', 'toolbar'); Common.NotificationCenter.trigger('layout:changed', 'toolbar');
}, },

View file

@ -81,27 +81,23 @@ define([
} }
var $container = $('#viewport-vbox-layout', el); var $container = $('#viewport-vbox-layout', el);
var items = $container.find(' > .layout-item');
this.vlayout = new Common.UI.VBoxLayout({ this.vlayout = new Common.UI.VBoxLayout({
box: $container, box: $container,
items: [{ items: [{
el: items[0], el: $container.find(' > .layout-item#toolbar'),
rely: true rely: true
}, { }, {
el: items[1], el: $container.find(' > .layout-item.middle'),
rely: true
}, {
el: items[2],
stretch: true stretch: true
}, { }, {
el: items[3], el: $container.find(' > .layout-item#statusbar'),
height: 25 height: 25
} }
] ]
}); });
$container = $('#viewport-hbox-layout', el); $container = $('#viewport-hbox-layout', el);
items = $container.find(' > .layout-item'); var items = $container.find(' > .layout-item');
this.hlayout = new Common.UI.HBoxLayout({ this.hlayout = new Common.UI.HBoxLayout({
box: $container, box: $container,
items: [{ // left menu chat & comment items: [{ // left menu chat & comment