mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
keyboard: Reset height before requesting preferred height
If we don't set the height property to -1 before requesting the preferred height, get_preferred_height() will just return us the fixed height that has been set before. We don't want this behavior here, so set the height to -1 before calling get_preferred_height(). This fixes a resizing issue where the keyboard is sized incorrectly after switching the monitor into portrait mode and back. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2306>
This commit is contained in:
parent
f6cda37b39
commit
a3bfe0ab56
1 changed files with 1 additions and 0 deletions
|
|
@ -1697,6 +1697,7 @@ var Keyboard = GObject.registerClass({
|
|||
* we allow the OSK being smaller than 1/3rd of the monitor height
|
||||
* there.
|
||||
*/
|
||||
this.height = -1;
|
||||
const forWidth = this.get_theme_node().adjust_for_width(monitor.width);
|
||||
const [, natHeight] = this.get_preferred_height(forWidth);
|
||||
this.height = Math.min(maxHeight, natHeight);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue