Changeset 50823 in vbox
- Timestamp:
- Mar 19, 2014 12:55:30 PM (11 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineWindow.h
r50807 r50823 74 74 75 75 protected slots: 76 77 /** Sets the top-level widget containing this widget to be the active window. */78 void sltActivateWindow() { activateWindow(); }79 76 80 77 /* Session event-handlers: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r50807 r50823 22 22 #include <QMouseEvent> 23 23 #include <QTouchEvent> 24 #include <QTimer>25 24 26 25 /* GUI includes: */ … … 598 597 QApplication::activeWindow() != pWatchedWidget->window()) 599 598 { 600 /* Activating hovered machine -window in 300msec: */601 QTimer::singleShot(300, pWatchedWidget->window(), SLOT(sltActivateWindow()));599 /* Activating hovered machine window: */ 600 pWatchedWidget->window()->activateWindow(); 602 601 #ifdef Q_WS_X11 603 602 /* On X11 its not enough to just activate window if you
Note:
See TracChangeset
for help on using the changeset viewer.