diff options
author | Katarina Behrens <Katarina.Behrens@cib.de> | 2018-09-05 15:08:33 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2018-09-05 19:50:38 +0200 |
commit | de2c99f715aeac78ee310200b49006a56cdc8d17 (patch) | |
tree | c4fa6a966f05f4576b0b5decd2fb034a7d8feacb /vcl | |
parent | 3b63ac006ba968548fab8d47c22e7d55c99d20f8 (diff) |
Deactivate Qt5Frame's reimplementation of Flush()
it causes too many issues: giant tooltips, dialogs can't be smaller
than 640x480 etc. Need to figure out a better solution
Change-Id: I4cc404687a60f2e0a39fd748fcc8cfea7cb7c0ac
Reviewed-on: https://gerrit.libreoffice.org/60038
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/qt5/Qt5Frame.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/qt5/Qt5Frame.cxx b/vcl/qt5/Qt5Frame.cxx index a60f16c82048..3365ed4af3b8 100644 --- a/vcl/qt5/Qt5Frame.cxx +++ b/vcl/qt5/Qt5Frame.cxx @@ -602,7 +602,8 @@ void Qt5Frame::SetPointerPos(long nX, long nY) void Qt5Frame::Flush() { - QGuiApplication::sync(); + // was: QGuiApplication::sync(); + // but FIXME it causes too many issues, figure out sth better // unclear if we need to also flush cairo surface - gtk3 backend // does not do it. QPainter in Qt5Widget::paintEvent() is |