- Timestamp:
- Jul 14, 2015 5:46:30 PM (9 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/platform/x11/VBoxX11Helper.cpp
r56930 r56935 75 75 if (QString((const char*)pcData).contains("Mutter", Qt::CaseInsensitive)) 76 76 wmType = X11WMType_Mutter; 77 else 78 if (QString((const char*)pcData).contains("GNOME Shell", Qt::CaseInsensitive)) 79 wmType = X11WMType_GnomeShell; 77 80 if (pcData) 78 81 XFree(pcData); -
trunk/src/VBox/Frontends/VirtualBox/src/platform/x11/VBoxX11Helper.h
r56930 r56935 25 25 X11WMType_KWin, 26 26 X11WMType_Mutter, 27 X11WMType_GnomeShell, 27 28 }; 28 29 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIMiniToolBar.cpp
r56932 r56935 330 330 { 331 331 case X11WMType_Mutter: 332 case X11WMType_GnomeShell: 332 333 VBoxGlobal::representAsToolbar(this); 333 334 break; … … 502 503 AssertPtrReturnVoid(m_pEmbeddedToolbar); 503 504 m_pEmbeddedToolbar->move(point); 504 505 #ifdef Q_WS_X11506 /* Update window mask: */507 setMask(m_pEmbeddedToolbar->geometry());508 #endif /* Q_WS_X11 */509 505 } 510 506
Note:
See TracChangeset
for help on using the changeset viewer.