mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Local changes
This commit is contained in:
parent
65600a4dcd
commit
7b0454dec6
2
.gitignore
vendored
2
.gitignore
vendored
@ -7,6 +7,8 @@ qrc_*
|
||||
moc_*
|
||||
ui_*
|
||||
Makefile
|
||||
/out
|
||||
CMakePresets.json
|
||||
|
||||
# IDEs
|
||||
.idea
|
||||
|
@ -25,8 +25,8 @@ endif()
|
||||
|
||||
project(QtADS LANGUAGES CXX VERSION ${VERSION_SHORT})
|
||||
|
||||
option(BUILD_STATIC "Build the static library" OFF)
|
||||
option(BUILD_EXAMPLES "Build the examples" ON)
|
||||
option(BUILD_STATIC "Build the static library" ON)
|
||||
option(BUILD_EXAMPLES "Build the examples" OFF)
|
||||
|
||||
if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "4")
|
||||
set(ads_PlatformDir "x86")
|
||||
|
@ -702,6 +702,11 @@ CFloatingDockContainer::CFloatingDockContainer(CDockManager *DockManager) :
|
||||
{
|
||||
native_window = false;
|
||||
}
|
||||
QString WaylandDisplay = qgetenv("WAYLAND_DISPLAY").toLower();
|
||||
if (WaylandDisplay != "")
|
||||
{
|
||||
native_window = false;
|
||||
}
|
||||
}
|
||||
|
||||
if (native_window)
|
||||
@ -713,7 +718,7 @@ CFloatingDockContainer::CFloatingDockContainer(CDockManager *DockManager) :
|
||||
{
|
||||
d->TitleBar = new CFloatingWidgetTitleBar(this);
|
||||
setTitleBarWidget(d->TitleBar);
|
||||
setWindowFlags(Qt::Window | Qt::WindowMinMaxButtonsHint | Qt::FramelessWindowHint);
|
||||
setWindowFlags(Qt::Window | Qt::WindowMinMaxButtonsHint | Qt::BypassWindowManagerHint);
|
||||
d->TitleBar->enableCloseButton(isClosable());
|
||||
connect(d->TitleBar, SIGNAL(closeRequested()), SLOT(close()));
|
||||
connect(d->TitleBar, &CFloatingWidgetTitleBar::maximizeRequested,
|
||||
|
Loading…
Reference in New Issue
Block a user