PB 6.30 b4 - #PB_Window_BorderLess|#PB_Window_Tool

Post bugreports for the Linux version here
User_Russian
Addict
Addict
Posts: 1600
Joined: Wed Nov 12, 2008 5:01 pm
Location: Russia

PB 6.30 b4 - #PB_Window_BorderLess|#PB_Window_Tool

Post by User_Russian »

Code: Select all

OpenWindow(0, 0, 0, 400, 100, "", #PB_Window_Invisible|#PB_Window_BorderLess|#PB_Window_Tool|#PB_Window_NoActivate)
HideWindow(0, #False)
Repeat
  Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindow
When using flags #PB_Window_BorderLess and #PB_Window_Tool, in Linux Mint for PC when using the qt subsystem, there is no window button on the taskbar. But in Raspberry Pi OS, the button is on the taskbar, but it shouldn't be there.
Fred
Administrator
Administrator
Posts: 18372
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PB 6.30 b4 - #PB_Window_BorderLess|#PB_Window_Tool

Post by Fred »

Probably another wayland VS xserver stuff, as the QT code is indeed the same for both.
Post Reply