Changeset 47230 in vbox
- Timestamp:
- Jul 18, 2013 11:53:24 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87346
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIPopupCenter.cpp
r47210 r47230 343 343 case UIPopupIntegrationType_Toplevel: 344 344 { 345 pPopupStack->setParent(pParent, 346 #if defined(Q_WS_WIN) || defined(Q_WS_X11) 347 /* Under Win and x11/KDE hosts *tool-window*: 348 * 1. has no task-bar record, 349 * 2. do not rewoke focus from current-window on show-event. */ 350 Qt::Tool 351 #else /* Q_WS_WIN || Q_WS_X11 */ 352 /* Need to test under Mac host... */ 353 Qt::Window 354 #endif /* !Q_WS_X11 */ 355 | Qt::FramelessWindowHint); 345 pPopupStack->setParent(pParent, Qt::Tool | Qt::FramelessWindowHint); 356 346 break; 357 347 } -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupStack.cpp
r47209 r47230 46 46 setAttribute(Qt::WA_TranslucentBackground); 47 47 #endif /* Q_WS_WIN || Q_WS_MAC */ 48 49 #ifdef Q_WS_MAC 50 /* Do not hide popup-stack 51 * and actually the seamless machine-window too 52 * due to Qt bug on window deactivation... */ 53 setAttribute(Qt::WA_MacAlwaysShowToolWindow); 54 #endif /* Q_WS_MAC */ 48 55 } 49 56
Note:
See TracChangeset
for help on using the changeset viewer.