Sublime Forum

City Lights Theme: title bar disappeared after upgrade

#1

Hello,

After upgrading Sublime Text today - title bar was replaced with hamburger menu and I couldn’t find the way to revert that. I’m using City Lights theme.

Please help!

0 Likes

#2

The custom title bar in Sublime Text 4 results in the menu getting collapsed into the hamburger menu. You can disable this in the default themes using "themed_title_bar": false but you may need to look at the documentation for your custom theme on how to do this.

1 Like

#3

Thank you for your swift response! Could you please let me know where I should add this? I tried Preferences: Settings and UI: Customize Theme with no luck :frowning: It was working as intended prior to this update, so must be something have changed on your end what made City Lights theme use hamburger menu instead of the full title bar, and I don’t understand why there is no easy way to change that.

1 Like

#4

You need to restart Sublime Text for this setting to take effect. It needs to be in your settings (not your theme).

0 Likes

#5

Unfortunately, this doesn’t work.

0 Likes

#6

The theme you’re using doesn’t have a setting for controlling whether the title bar is themed. You can either customize it to not be themed or use a different theme.

0 Likes

#7

How I can customize it to not be themed?

0 Likes

#8

If you go to Preferences > Customize Theme you can paste the following into the right hand side:

{
    "variables":
    {
    },
    "rules":
    [
        {
            "class": "title_bar",
            "bg": "#0000"
        }
    ]
}
0 Likes