diff options
Diffstat (limited to 'src/ui/window.h')
-rw-r--r-- | src/ui/window.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ui/window.h b/src/ui/window.h index b4433e85..e4e89776 100644 --- a/src/ui/window.h +++ b/src/ui/window.h @@ -184,13 +184,13 @@ namespace cru { Control* ReleaseCurrentMouseCapture(); //*************** region: debug *************** -#ifdef CRU_DEBUG_DRAW_CONTROL_BORDER - bool GetDebugDrawControlBorder() const +#ifdef CRU_DEBUG_LAYOUT + bool IsDebugLayout() const { - return debug_draw_control_border_; + return debug_layout_; } - void SetDebugDrawControlBorder(bool value); + void SetDebugLayout(bool value); #endif public: @@ -276,8 +276,8 @@ namespace cru { Control* mouse_capture_control_ = nullptr; -#ifdef CRU_DEBUG_DRAW_CONTROL_BORDER - bool debug_draw_control_border_ = false; +#ifdef CRU_DEBUG_LAYOUT + bool debug_layout_ = false; #endif }; } |