diff options
| author | Franklin Sobrinho | 2015-04-08 14:02:13 -0300 |
|---|---|---|
| committer | Franklin Sobrinho | 2015-04-08 14:02:13 -0300 |
| commit | 59692d9012a320014366d3dcecac645a64a4d5f2 (patch) | |
| tree | 768cdd9944fd63e859019203f3c6edd4ba33efc6 /tools/editor/resources_dock.cpp | |
| parent | e18c6ef63bb57290b023fde01391f8bdcdfe5aed (diff) | |
| download | godot-59692d9012a320014366d3dcecac645a64a4d5f2.tar.gz godot-59692d9012a320014366d3dcecac645a64a4d5f2.tar.zst godot-59692d9012a320014366d3dcecac645a64a4d5f2.zip | |
Changed popup_centered by popup_centered_minsize in editor dialogs
Diffstat (limited to 'tools/editor/resources_dock.cpp')
| -rw-r--r-- | tools/editor/resources_dock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/resources_dock.cpp b/tools/editor/resources_dock.cpp index 4614c4945..1e83c0189 100644 --- a/tools/editor/resources_dock.cpp +++ b/tools/editor/resources_dock.cpp @@ -134,7 +134,7 @@ void ResourcesDock::save_resource(const String& p_path,const Ref<Resource>& p_re if (err!=OK) { accept->set_text("Error saving resource!"); - accept->popup_centered(Size2(300,100)); + accept->popup_centered_minsize(); return; } // EditorFileSystem::get_singleton()->update_file(path,p_resource->get_type()); |
