mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 09:09:47 +00:00
ShortcutSelector popup theme is now affected by the chosen theme
This commit is contained in:
parent
0cfa1071cc
commit
b202bc5c5a
|
@ -12,8 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
- You can now export your projects to .gif files - Thanks to Martin Novák (novhack)!
|
||||
- A new rotation method has been added, "Upscale, Rotate and Downscale". It's similar to Rotsprite. Thanks to luiq54!
|
||||
- Pattern filling is now possible. If the user chooses a brush that is not the pixel or a circle brush and uses the bucket tool, the brush image is used as a pattern that fills the area.
|
||||
- Users can change keyboard shortcut binding for tools - thanks to Martin Novák (novhack)!
|
||||
- Importing .pngs as palettes is now possible - thanks to Martin Novák (novhack)!
|
||||
- A confirmation message now appears when the user quits Pixelorama, if there are unsaved changes - thanks to Schweini07!
|
||||
- Templates and a lock aspect ratio option have been added to the "Create new image" dialog - thanks to Gaarco!
|
||||
- Locking layers is now possible. When a layer is locked, no changes can be made to it. Layers are unlocked by default.
|
||||
- Ability to get color for palette buttons, when editing a palette, from the currently selected left and right colors.
|
||||
- Esperanto translation - thanks to Teashrock!
|
||||
|
@ -23,7 +25,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
### Changed
|
||||
- The UI - and especially the timeline - has been revamped!
|
||||
- The export dialog has also been revamped - thanks to thanks to Martin Novák (novhack)!
|
||||
- Templates and a lock aspect ratio option have been added to the "Create new image" dialog - thanks to Gaarco!
|
||||
- An asterisk is added to the window title if there are unsaved changes.
|
||||
- A VSplitContainer has been added between the canvas and the timeline.
|
||||
- Notification text is now black on the gold and light themes.
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
[ext_resource path="res://Assets/Fonts/CJK/NotoSansCJKtc-Regular.tres" type="DynamicFont" id=3]
|
||||
|
||||
[node name="PreferencesDialog" type="AcceptDialog"]
|
||||
visible = true
|
||||
margin_right = 430.0
|
||||
margin_bottom = 1347.0
|
||||
rect_min_size = Vector2( 430, 0 )
|
||||
|
|
|
@ -329,6 +329,8 @@ func change_theme(ID : int) -> void:
|
|||
# Make sure the frame text gets updated
|
||||
Global.current_frame = Global.current_frame
|
||||
|
||||
$Popups/ShortcutSelector.theme = main_theme
|
||||
|
||||
|
||||
func apply_shortcuts_preset(preset) -> void:
|
||||
for action in preset:
|
||||
|
|
Loading…
Reference in a new issue