improve app icon location

This commit is contained in:
jderose9
2016-12-23 09:56:01 -05:00
parent 26be98eea8
commit 80670e1b90
2 changed files with 3 additions and 3 deletions

View File

@@ -152,8 +152,8 @@ function disable() {
}
function setPanelStyle() {
size = settings.get_int('panel-size');
position = settings.get_enum('panel-position');
let size = settings.get_int('panel-size');
let position = settings.get_enum('panel-position');
panel.actor.set_height(size);

View File

@@ -180,7 +180,7 @@ const taskbarActor = new Lang.Class({
childBox.y1 = contentBox.y1;
childBox.x1 = contentBox.x1;
childBox.x2 = contentBox.x1 + showAppsNatWidth;
childBox.y2 = contentBox.y1 + showAppsNatHeight;
childBox.y2 = contentBox.y2;
showAppsButton.allocate(childBox, flags);
},