diff options
Diffstat (limited to 'src/ui/window.cpp')
-rw-r--r-- | src/ui/window.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/window.cpp b/src/ui/window.cpp index 2bebd7d4..8889e032 100644 --- a/src/ui/window.cpp +++ b/src/ui/window.cpp @@ -439,12 +439,12 @@ namespace cru } } -#ifdef CRU_DEBUG_DRAW_CONTROL_BORDER - void Window::SetDebugDrawControlBorder(const bool value) +#ifdef CRU_DEBUG_LAYOUT + void Window::SetDebugLayout(const bool value) { - if (debug_draw_control_border_ != value) + if (debug_layout_ != value) { - debug_draw_control_border_ = value; + debug_layout_ = value; Repaint(); } } |