gtk: Fix setting unresizable window.
This commit is contained in:
parent
fd99d21c8f
commit
76d0d3ec19
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ gfx::Size NativeWindowGtk::GetMaximumSize() {
|
|||
void NativeWindowGtk::SetResizable(bool resizable) {
|
||||
// Should request widget size after setting unresizable, otherwise the
|
||||
// window will shrink to a very small size.
|
||||
if (!IsResizable()) {
|
||||
if (!IsResizable() || !has_ever_been_shown_) {
|
||||
gint width, height;
|
||||
gtk_window_get_size(window_, &width, &height);
|
||||
gtk_widget_set_size_request(GTK_WIDGET(window_), width, height);
|
||||
|
|
Loading…
Reference in a new issue