mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
Merge branch 'uigroup-size' into 'main'
layout: Update size of uiGroup upon monitors-changed event See merge request GNOME/gnome-shell!3339
This commit is contained in:
commit
5e20193ed2
1 changed files with 5 additions and 0 deletions
|
|
@ -566,6 +566,10 @@ export const LayoutManager = GObject.registerClass({
|
|||
this.keyboardIndex = this.primaryIndex;
|
||||
}
|
||||
|
||||
_updateUiGroups() {
|
||||
this.uiGroup.set_size(global.screen_width, global.screen_height);
|
||||
}
|
||||
|
||||
_panelBoxChanged() {
|
||||
this._updatePanelBarrier();
|
||||
|
||||
|
|
@ -604,6 +608,7 @@ export const LayoutManager = GObject.registerClass({
|
|||
_monitorsChanged() {
|
||||
this._updateMonitors();
|
||||
this._updateBoxes();
|
||||
this._updateUiGroups();
|
||||
this._updateHotCorners();
|
||||
this._updateBackgrounds();
|
||||
this._updateFullscreen();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue