diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-07-17 18:25:21 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-07-17 18:25:21 +0200 |
commit | 22419082d9bedbc9dc060ea5784bb0871f8710a3 (patch) | |
tree | 6342d41c040b30c883d53860ac6e8c4d20802340 /scene | |
parent | b23889eb413f26cf0a3b94180fe11e86c08489f9 (diff) |
Remove some noisy debug prints
Part of #5031
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/popup.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scene/gui/popup.cpp b/scene/gui/popup.cpp index 8d02d0e4e5..5b83c3f8b8 100644 --- a/scene/gui/popup.cpp +++ b/scene/gui/popup.cpp @@ -125,8 +125,6 @@ void Popup::set_as_minsize() { } - print_line(String(c->get_type())+": "+minsize); - total_minsize.width = MAX( total_minsize.width, minsize.width ); total_minsize.height = MAX( total_minsize.height, minsize.height ); } @@ -168,8 +166,6 @@ void Popup::popup_centered_minsize(const Size2& p_minsize) { } - print_line(String(c->get_type())+": "+minsize); - total_minsize.width = MAX( total_minsize.width, minsize.width ); total_minsize.height = MAX( total_minsize.height, minsize.height ); } |