mirror of
https://github.com/brl/mutter.git
synced 2025-02-13 11:54:09 +00:00
![Jonas Ådahl](/assets/img/avatar_default.png)
A client that set a new fallback size while being maximized should not restore to the one prior to being maximized. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1171
23 lines
369 B
Plaintext
23 lines
369 B
Plaintext
# This is only tested on Wayland since it's broken on X11
|
|
|
|
new_client w wayland
|
|
create w/1 csd
|
|
|
|
resize w/1 500 400
|
|
show w/1
|
|
wait
|
|
|
|
assert_size w/1 500 400
|
|
|
|
maximize w/1
|
|
wait_reconfigure
|
|
assert_size w/1 MONITOR_WIDTH MONITOR_HEIGHT
|
|
|
|
resize w/1 300 500
|
|
wait_reconfigure
|
|
assert_size w/1 MONITOR_WIDTH MONITOR_HEIGHT
|
|
|
|
unmaximize w/1
|
|
wait_reconfigure
|
|
assert_size w/1 300 500
|