CreateToolBar Bug on macOS
Posted: Fri Nov 17, 2017 4:01 pm
I don't know is a PB-Bug or a Bug on my macOS High Sierra
PB v5.45, v5.46, v5.60, v5.61
Xcode v9.0 and v9.1
If this is a bug in Purebasic, then we have a problem with quality assurance.
Had little to do with writing new applications with Purebasic lately.
Should we perhaps write codes to test all basic functions automatically, with the creation of a protocol
Code: Select all
If OpenWindow(0, 0, 0, 150, 25, "ToolBar", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
CreateImage(0,16,16)
StartDrawing(ImageOutput(0))
Box(0,0,16,16,RGB(255,255,255))
Box(4,4,8,8,RGB(255,0,0))
StopDrawing()
CreateImage(1,16,16)
StartDrawing(ImageOutput(1))
Box(0,0,16,16,RGB(255,0,0))
Box(4,4,8,8,RGB(255,255,255))
StopDrawing()
If CreateToolBar(0, WindowID(0))
ToolBarImageButton(0,ImageID(0))
ToolBarImageButton(1,ImageID(1))
EndIf
Repeat
Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf
Xcode v9.0 and v9.1
If this is a bug in Purebasic, then we have a problem with quality assurance.
Had little to do with writing new applications with Purebasic lately.
Should we perhaps write codes to test all basic functions automatically, with the creation of a protocol