You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-16 14:00:40 +00:00
Improve completion scroll bar visibility in the script editor (3.x)
This makes the scroll bar bar thicker and more opaque (roughly matching the editor theme's scroll bar by default).
This commit is contained in:
@@ -1337,7 +1337,7 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
|
||||
const Color completion_background_color = dark_theme ? base_color : background_color;
|
||||
const Color completion_selected_color = alpha1;
|
||||
const Color completion_existing_color = alpha2;
|
||||
const Color completion_scroll_color = alpha1;
|
||||
const Color completion_scroll_color = Color(mono_value, mono_value, mono_value, 0.29);
|
||||
const Color completion_font_color = font_color;
|
||||
const Color text_color = font_color;
|
||||
const Color line_number_color = dim_color;
|
||||
|
||||
Reference in New Issue
Block a user