Sublime Forum

[Theming] mini_quick_panel_row vs quick_panel_row?

#1

In .sublime-theme, I can see class mini_quick_panel_row applies to the quick panel (package control, go to, etc), but what does quick_panel_row applies to? I tried putting in a bright red color but never see it anywhere. Commenting it out has no visible effect either.

(ST3)

0 Likes

#2

any difference with the following quick panel examples (enter them in the console):

window.show_quick_panel(['hello', '\tworld'], None)
window.show_quick_panel([['hello', 'world'], '\tworld'], None)
window.show_quick_panel([['hello', 'world', 'this is a test'], '\tworld'], None)

(the row size changes depending how many lines there are in a row.)

0 Likes