Sublime Forum

Disable items highlighting on mouse hover in file/project switch dialog

#1

Hi there!

I have spotted some inconsistency in project/file switch dialog compared to command palette. Command palette’s items is not being highlighted on mouse hover, unlike an items in project/file switch dialog.

Here is an example.

File switch dialog:

Double highlighting in switch dialog is confusing me every time. My guess is to disable it.

Sublime Text 3105

0 Likes

#2

You need to edit your sublime-theme. Look for a quick_panel_row class with hover attribute, something like this:

    {
        "class": "quick_panel_row",
        "attributes": ["hover"],
        "layer0.tint": [54, 54, 66],
        "layer0.opacity": 0.3
    },

Comment it or change color. Or you can fix command palette instead, its class is mini_quick_panel_row.

1 Like

#3

I thought that behavior was hardcoded in ST and compitely forgot that it may be caused by my theme. I will redirect my suggestion and appropriate patches to the author of the theme. Thank you!

0 Likes