Ver Fonte

Merge pull request #7195 from bugstew/texture_region_snap_mode

Fix snap mode selector sticking in texture region module
Rémi Verschelde há 9 anos atrás
pai
commit
e297087cab
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      tools/editor/plugins/texture_region_editor_plugin.cpp

+ 1 - 1
tools/editor/plugins/texture_region_editor_plugin.cpp

@@ -507,8 +507,8 @@ void TextureRegionEditor::_scroll_changed(float)
 
 void TextureRegionEditor::_set_snap_mode(int p_mode)
 {
-	snap_mode = p_mode;
 	snap_mode_button->get_popup()->set_item_checked(snap_mode,false);
+	snap_mode = p_mode;
 	snap_mode_button->set_text(snap_mode_button->get_popup()->get_item_text(p_mode));
 	snap_mode_button->get_popup()->set_item_checked(snap_mode,true);