mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-23 12:26:59 +01:00
Fix visual indicator toggles in the MeshDataResource editor.
This commit is contained in:
parent
8253cf6c56
commit
ab2f492775
@ -611,7 +611,7 @@ MDIEd::MDIEd() {
|
||||
action_button->set_custom_minimum_size(Size2(25, 20));
|
||||
action_button->set_tooltip("Outline");
|
||||
action_button->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
action_button->connect("toggled", this, "on_handle_selection_type_front_toggled");
|
||||
action_button->connect("toggled", this, "on_visual_indicator_outline_toggled");
|
||||
action_buttons_container->add_child(action_button);
|
||||
|
||||
action_button = memnew(Button);
|
||||
@ -621,7 +621,7 @@ MDIEd::MDIEd() {
|
||||
action_button->set_custom_minimum_size(Size2(25, 20));
|
||||
action_button->set_tooltip("Seam");
|
||||
action_button->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
action_button->connect("toggled", this, "on_handle_selection_type_back_toggled");
|
||||
action_button->connect("toggled", this, "on_visual_indicator_seam_toggled");
|
||||
action_buttons_container->add_child(action_button);
|
||||
|
||||
action_button = memnew(Button);
|
||||
@ -631,7 +631,7 @@ MDIEd::MDIEd() {
|
||||
action_button->set_custom_minimum_size(Size2(25, 20));
|
||||
action_button->set_tooltip("Handle");
|
||||
action_button->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
action_button->connect("toggled", this, "on_handle_selection_type_all_toggled");
|
||||
action_button->connect("toggled", this, "on_visual_indicator_handle_toggled");
|
||||
action_buttons_container->add_child(action_button);
|
||||
|
||||
// -- Scroll -- Separator
|
||||
|
Loading…
Reference in New Issue
Block a user