summaryrefslogtreecommitdiff
path: root/tizen/src/ui/qt5_supplement.cpp
diff options
context:
space:
mode:
authorGiWoong Kim <giwoong.kim@samsung.com>2016-01-19 20:40:06 +0900
committerSeokYeon Hwang <syeon.hwang@samsung.com>2016-01-27 16:36:26 +0900
commitca41432d58ac753af9b11af688cd9d9ad183e5a4 (patch)
tree05e7cd5452ab4ba6fcaf8f7cfac1143b6ab2d465 /tizen/src/ui/qt5_supplement.cpp
parentc34e0f671d0df5822511cbf2336bb22c6d204fb0 (diff)
downloadqemu-ca41432d58ac753af9b11af688cd9d9ad183e5a4.tar.gz
qemu-ca41432d58ac753af9b11af688cd9d9ad183e5a4.tar.bz2
qemu-ca41432d58ac753af9b11af688cd9d9ad183e5a4.zip
menu: modified move function
Let's keep the emulator window covered with transparent widget while moving, to handle mouse events conveniently. However, display region is excepted. Display can be drawn black or frozen screen if it has a transparent layer on it. So, to avoid this issue, display handles mouse events directly while moving, instead of helping of transparent widget. Change-Id: I37d69f1c041843fdaa61244268d06bbf0af7c20b Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
Diffstat (limited to 'tizen/src/ui/qt5_supplement.cpp')
-rw-r--r--tizen/src/ui/qt5_supplement.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tizen/src/ui/qt5_supplement.cpp b/tizen/src/ui/qt5_supplement.cpp
index 4de20ab393..589cec0b45 100644
--- a/tizen/src/ui/qt5_supplement.cpp
+++ b/tizen/src/ui/qt5_supplement.cpp
@@ -378,7 +378,7 @@ void qt5_refresh_internal(void)
only if Move function is not active */
if (display->isOffGuideShown() == false) {
if (dpy_blank_cnt > MAX_DPY_BLANK_FRAME_CNT) {
- if (mainwindow->isTransWidgetCreated() == false) {
+ if (display->isMovingMode() == false) {
display->showOffGuideImg();
}
dpy_blank_cnt = 0;