IDE Toolbar

Working on new editor enhancements?
User avatar
spikey
Enthusiast
Enthusiast
Posts: 769
Joined: Wed Sep 22, 2010 1:17 pm
Location: United Kingdom

IDE Toolbar

Post by spikey »

I see from line 62 of "ToolbarManagement.pb" that the Mac gets large buttons but the others don't - is there any reason for this? Just curious really.

Code: Select all

CompilerIf #CompileMac
  flags = #PB_ToolBar_Large
CompilerElse
  flags = 0
CompilerEndIf
User avatar
Shardik
Addict
Addict
Posts: 2060
Joined: Thu Apr 21, 2005 2:38 pm
Location: Germany

Re: IDE Toolbar

Post by Shardik »

Beginning with MacOS 13.0.1 'Ventura', Apple dropped the support of small icons in toolbars. For a hack to display small icons even in newer MacOS versions you may take a look into this example.
User avatar
spikey
Enthusiast
Enthusiast
Posts: 769
Joined: Wed Sep 22, 2010 1:17 pm
Location: United Kingdom

Re: IDE Toolbar

Post by spikey »

That would explain it - thanks!
Post Reply