diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-01-19 19:14:09 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-01-19 20:02:21 +0300 |
commit | 752402cf354a105496ed9a86038f83f56d0706fd (patch) | |
tree | eddbf98b4692136c7d6c56e765b557236bb40afc /editor/plugins/bit_map_editor_plugin.cpp | |
parent | 14fdd28de9f1f9979cb6cffa4b715a16d406439d (diff) | |
download | redot-engine-752402cf354a105496ed9a86038f83f56d0706fd.tar.gz |
Clean-up, harmonize, and improve StyleBox API
- Make all margin properties follow the same naming convention (their getter and setter too).
- Remove a virtual counterpart of `get_style_margin` from API.
- Allow to override `get_minimum_size` from scripting and remove `get_center_size`.
Diffstat (limited to 'editor/plugins/bit_map_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/bit_map_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/bit_map_editor_plugin.cpp b/editor/plugins/bit_map_editor_plugin.cpp index 4f82aaf071..30fc60b0e0 100644 --- a/editor/plugins/bit_map_editor_plugin.cpp +++ b/editor/plugins/bit_map_editor_plugin.cpp @@ -53,7 +53,7 @@ BitMapEditor::BitMapEditor() { // Reduce extra padding on top and bottom of size label. Ref<StyleBoxEmpty> stylebox; stylebox.instantiate(); - stylebox->set_default_margin(SIDE_RIGHT, 4 * EDSCALE); + stylebox->set_content_margin(SIDE_RIGHT, 4 * EDSCALE); size_label->add_theme_style_override("normal", stylebox); } |