Improve tab-less dock window behavior in other platforms

Add checks for #3215 to hide the tab bar only if it doesn't prevent
window dragging in Wayland sessions with native decorations.
This commit is contained in:
2025-09-07 19:27:24 +03:00
parent b443b74d18
commit d70a003617
7 changed files with 39 additions and 6 deletions

View File

@@ -274,6 +274,15 @@ bool PlatformBase::SupportsNativeDecorations()
return true;
}
bool PlatformBase::SupportsNativeDecorationDragging()
{
#if PLATFORM_LINUX
return false;
#else
return true;
#endif
}
#endif
bool PlatformBase::Is64BitApp()