You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-21 14:57:09 +00:00
Small fixes to static analyzer bugs
This commit is contained in:
@@ -841,6 +841,12 @@ void AnimationPlayerEditor::_update_player() {
|
||||
onion_skinning->set_disabled(player == NULL);
|
||||
pin->set_disabled(player == NULL);
|
||||
|
||||
if (!player) {
|
||||
AnimationPlayerEditor::singleton->get_track_editor()->update_keying();
|
||||
EditorNode::get_singleton()->update_keying();
|
||||
return;
|
||||
}
|
||||
|
||||
int active_idx = -1;
|
||||
for (List<StringName>::Element *E = animlist.front(); E; E = E->next()) {
|
||||
|
||||
@@ -853,12 +859,6 @@ void AnimationPlayerEditor::_update_player() {
|
||||
active_idx = animation->get_item_count() - 1;
|
||||
}
|
||||
|
||||
if (!player) {
|
||||
AnimationPlayerEditor::singleton->get_track_editor()->update_keying();
|
||||
EditorNode::get_singleton()->update_keying();
|
||||
return;
|
||||
}
|
||||
|
||||
updating = false;
|
||||
if (active_idx != -1) {
|
||||
animation->select(active_idx);
|
||||
|
||||
@@ -1462,10 +1462,14 @@ bool CanvasItemEditor::_gui_input_anchors(const Ref<InputEvent> &p_event) {
|
||||
if (!use_single_axis || use_y) control->set_anchor(MARGIN_BOTTOM, new_anchor.y, false, false);
|
||||
break;
|
||||
case DRAG_ANCHOR_ALL:
|
||||
if (!use_single_axis || !use_y) control->set_anchor(MARGIN_LEFT, new_anchor.x, false, true);
|
||||
if (!use_single_axis || !use_y) control->set_anchor(MARGIN_RIGHT, new_anchor.x, false, true);
|
||||
if (!use_single_axis || use_y) control->set_anchor(MARGIN_TOP, new_anchor.y, false, true);
|
||||
if (!use_single_axis || use_y) control->set_anchor(MARGIN_BOTTOM, new_anchor.y, false, true);
|
||||
if (!use_single_axis || !use_y) {
|
||||
control->set_anchor(MARGIN_LEFT, new_anchor.x, false, true);
|
||||
control->set_anchor(MARGIN_RIGHT, new_anchor.x, false, true);
|
||||
}
|
||||
if (!use_single_axis || use_y) {
|
||||
control->set_anchor(MARGIN_TOP, new_anchor.y, false, true);
|
||||
control->set_anchor(MARGIN_BOTTOM, new_anchor.y, false, true);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user