Accepting request 518577 from GNOME:Factory

1

OBS-URL: https://build.opensuse.org/request/show/518577
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-shell?expand=0&rev=133
This commit is contained in:
Dominique Leuenberger 2017-08-29 09:39:35 +00:00 committed by Git OBS Bridge
commit c8f16d1517
2 changed files with 9 additions and 3 deletions

View File

@ -160,9 +160,8 @@ var panelPosUpdateId = null;
// layout.js: Replace the origin "box.set_position" call
function setMainPanelPosition (mainPanel, primaryMonitor) {
if ( isSLEClassicMode() ){
// FIXME: "mainPanel.height" may be uninitialized at this point: fixed to
// a known value for now.
let mainPanelHeight = 28;
let mainPanelHeight = mainPanel.height == 0
? 28 : mainPanel.height;
// Main Panel at the bottom
mainPanel.set_position(primaryMonitor.x,
primaryMonitor.y + primaryMonitor.height - mainPanelHeight);

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Aug 23 07:47:11 UTC 2017 - xwang@suse.com
- Update SLEClassicExt.js. Fix only half panel shown on bottom of
desktop when scaling-factor equals 2(Require patched
gnome-shell-extensions)(bsc#1046570).
-------------------------------------------------------------------
Wed Aug 2 02:35:25 UTC 2017 - xwang@suse.com