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:
commit
c8f16d1517
@ -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);
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user