#PB_Image_Raised not supported by Linux

Found an issue in the documentation ? Please report it here !

Moderator: Documentation Editors

uwekel
Enthusiast
Enthusiast
Posts: 740
Joined: Sat Dec 03, 2011 5:54 pm
Location: Oldenburg (Germany)

#PB_Image_Raised not supported by Linux

Post by uwekel »

Hi,

the #PB_Image_Raised flag is not supported by Linux and shows the same border as with #PB_Image_Border.

Code: Select all

OpenWindow(0, 0, 0, 400, 300, "Test", #PB_Window_Normal)
ImageGadget(0, 10, 10, 50, 50, #Null)
ImageGadget(1, 10, 70, 50, 50, #Null, #PB_Image_Border)
ImageGadget(2, 10, 130, 50, 50, #Null, #PB_Image_Raised)
Repeat
  Select WaitWindowEvent()
  Case #PB_Event_CloseWindow
    Break
  EndSelect
ForEver
The help should be adapted.
Regards
Uwe
PB 5.70 LTS (x64) - Debian Testing, Gnome 3.30.2
User avatar
Andre
PureBasic Team
PureBasic Team
Posts: 2056
Joined: Fri Apr 25, 2003 6:14 pm
Location: Germany (Saxony, Deutscheinsiedel)
Contact:

Re: #PB_Image_Raised not supported by Linux

Post by Andre »

To be checked by Fred/freak.... (can this functionality be added to the Linux version, or should a note be added to the docs?)
Bye,
...André
(PureBasicTeam::Docs & Support - PureArea.net | Order:: PureBasic | PureVisionXP)
Post Reply