diff options
author | Radek Doulik <rodo@novell.com> | 2011-06-27 17:34:15 +0200 |
---|---|---|
committer | Radek Doulik <rodo@novell.com> | 2011-06-27 17:34:15 +0200 |
commit | 865e186b92605ad02981fb605aa4e7f27489d4cd (patch) | |
tree | 98c5553443e91fb3bfbf3f84fd9fba2be5c6fe60 | |
parent | 0cfced00b9815ca48e7136904a163d85432560d4 (diff) |
do not set minimal size for fullscreen windows
- otherwise they cannot shrink when downsizing resolution of the screen
-rw-r--r-- | vcl/unx/gtk/window/gtkframe.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vcl/unx/gtk/window/gtkframe.cxx b/vcl/unx/gtk/window/gtkframe.cxx index c5c2ae829e..c6004312bd 100644 --- a/vcl/unx/gtk/window/gtkframe.cxx +++ b/vcl/unx/gtk/window/gtkframe.cxx @@ -1431,7 +1431,7 @@ void GtkSalFrame::setMinMaxSize() int aHints = 0; if( m_nStyle & SAL_FRAME_STYLE_SIZEABLE ) { - if( m_aMinSize.Width() && m_aMinSize.Height() ) + if( m_aMinSize.Width() && m_aMinSize.Height() && ! m_bFullscreen ) { aGeo.min_width = m_aMinSize.Width()+CONTAINER_ADJUSTMENT; aGeo.min_height = m_aMinSize.Height()+CONTAINER_ADJUSTMENT; @@ -1446,11 +1446,12 @@ void GtkSalFrame::setMinMaxSize() } else { - aGeo.min_width = maGeometry.nWidth; - aGeo.min_height = maGeometry.nHeight; - aHints |= GDK_HINT_MIN_SIZE; if( ! m_bFullscreen ) { + aGeo.min_width = maGeometry.nWidth; + aGeo.min_height = maGeometry.nHeight; + aHints |= GDK_HINT_MIN_SIZE; + aGeo.max_width = maGeometry.nWidth; aGeo.max_height = maGeometry.nHeight; aHints |= GDK_HINT_MAX_SIZE; |