Fix duplicate conditions.
This commit is contained in:
parent
a98589a449
commit
d73d8b8d78
|
@ -341,10 +341,7 @@ Error ResourceImporterLayeredTexture::import(const String &p_source_file, const
|
|||
|
||||
if (compress_mode == COMPRESS_VRAM_COMPRESSED) {
|
||||
mipmaps = true;
|
||||
}
|
||||
|
||||
//optimize
|
||||
if (compress_mode == COMPRESS_VRAM_COMPRESSED) {
|
||||
//if using video ram, optimize
|
||||
if (channel_pack == 0) {
|
||||
//remove alpha if not needed, so compression is more efficient
|
||||
|
|
|
@ -2899,9 +2899,8 @@ void VisualScriptEditor::_graph_connected(const String &p_from, int p_from_slot,
|
|||
if (!converted) {
|
||||
undo_redo->add_do_method(script.ptr(), "data_connect", p_from.to_int(), from_port, p_to.to_int(), to_port);
|
||||
undo_redo->add_undo_method(script.ptr(), "data_disconnect", p_from.to_int(), from_port, p_to.to_int(), to_port);
|
||||
}
|
||||
// Update nodes in graph
|
||||
if (!converted) {
|
||||
|
||||
// Update nodes in graph
|
||||
undo_redo->add_do_method(this, "_update_graph", p_from.to_int());
|
||||
undo_redo->add_do_method(this, "_update_graph", p_to.to_int());
|
||||
undo_redo->add_undo_method(this, "_update_graph", p_from.to_int());
|
||||
|
|
Loading…
Reference in New Issue