diff options
author | Andy Shaw <andy.shaw@nokia.com> | 2010-09-29 10:07:07 (GMT) |
---|---|---|
committer | Andy Shaw <andy.shaw@nokia.com> | 2010-09-29 10:07:07 (GMT) |
commit | 1f554a40c65fef249b8044246731a6de34eb90a1 (patch) | |
tree | 6949d0c10b4d8fc5bbad3b0b380ee5b7c14d4234 /src/gui/kernel/qt_cocoa_helpers_mac.mm | |
parent | 8050dc45c8c9a134875196dcddf010d4194fd974 (diff) | |
download | Qt-1f554a40c65fef249b8044246731a6de34eb90a1.zip Qt-1f554a40c65fef249b8044246731a6de34eb90a1.tar.gz Qt-1f554a40c65fef249b8044246731a6de34eb90a1.tar.bz2 |
Update frameGeometry when the unified toolbar visiblity is toggled
When the unified toolbar visiblity was toggled on Carbon then it would
not have a correct frameGeometry as it would have a top position
different to what it should have been as the window does not move.
Autotest included in this commit.
Task-number: QTBUG-14055
Reviewed-by: Prasanth
Diffstat (limited to 'src/gui/kernel/qt_cocoa_helpers_mac.mm')
-rw-r--r-- | src/gui/kernel/qt_cocoa_helpers_mac.mm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/kernel/qt_cocoa_helpers_mac.mm b/src/gui/kernel/qt_cocoa_helpers_mac.mm index 7d23abf..3945754 100644 --- a/src/gui/kernel/qt_cocoa_helpers_mac.mm +++ b/src/gui/kernel/qt_cocoa_helpers_mac.mm @@ -193,6 +193,7 @@ void macWindowToolbarShow(const QWidget *widget, bool show ) } } #else + qt_widget_private(const_cast<QWidget *>(widget))->updateFrameStrut(); ShowHideWindowToolbar(wnd, show, false); #endif } |