LibGUI: Remove debug spam in GWidget::spans_entire_window_horizontally().

This commit is contained in:
Andreas Kling 2019-03-29 02:22:17 +01:00
parent d48f486634
commit a5135dbf01
Notes: sideshowbarker 2024-07-19 14:54:36 +09:00

View File

@ -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();
}