diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-29 02:22:17 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-29 02:22:17 +0100 |
commit | a5135dbf011293519f8b75107cb91305a8d430a3 (patch) | |
tree | 3a44507086084d90088f4519c794c329bf9d3a97 | |
parent | d48f48663426d77da875dc0ae35bff649bc430bb (diff) | |
download | serenity-a5135dbf011293519f8b75107cb91305a8d430a3.zip |
LibGUI: Remove debug spam in GWidget::spans_entire_window_horizontally().
-rw-r--r-- | LibGUI/GWidget.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/LibGUI/GWidget.cpp b/LibGUI/GWidget.cpp index 8a13b8ecae..d67d6b00ad 100644 --- a/LibGUI/GWidget.cpp +++ b/LibGUI/GWidget.cpp @@ -365,6 +365,5 @@ bool GWidget::spans_entire_window_horizontally() const if (main_widget == this) return true; auto wrr = window_relative_rect(); - dbgprintf("Checking %s{%p} wrr=%s, mwr=%s\n", class_name(), this, wrr.to_string().characters(), main_widget->rect().to_string().characters()); return wrr.left() == main_widget->rect().left() && wrr.right() == main_widget->rect().right(); } |