1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Added increment_pressed and decrement_pressed icons to scrollbars

(cherry picked from commit e27ab2708f)
This commit is contained in:
skysphr
2021-08-17 22:06:19 +03:00
committed by Rémi Verschelde
parent 8a6bc045ea
commit f53294f874
6 changed files with 47 additions and 2 deletions

View File

@@ -19,6 +19,9 @@
<theme_item name="decrement_highlight" data_type="icon" type="Texture">
Displayed when the mouse cursor hovers over the decrement button.
</theme_item>
<theme_item name="decrement_pressed" data_type="icon" type="Texture">
Displayed when the decrement button is being pressed.
</theme_item>
<theme_item name="grabber" data_type="style" type="StyleBox">
Used as texture for the grabber, the draggable element representing current scroll.
</theme_item>
@@ -34,6 +37,9 @@
<theme_item name="increment_highlight" data_type="icon" type="Texture">
Displayed when the mouse cursor hovers over the increment button.
</theme_item>
<theme_item name="increment_pressed" data_type="icon" type="Texture">
Displayed when the increment button is being pressed.
</theme_item>
<theme_item name="scroll" data_type="style" type="StyleBox">
Used as background of this [ScrollBar].
</theme_item>