summaryrefslogtreecommitdiffstats
path: root/views/view.h
diff options
context:
space:
mode:
Diffstat (limited to 'views/view.h')
-rw-r--r--views/view.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/views/view.h b/views/view.h
index cb3545c..016d74e 100644
--- a/views/view.h
+++ b/views/view.h
@@ -1053,9 +1053,6 @@ class View : public AcceleratorTarget {
void Focus();
void Blur();
- // Whether the view can be focused.
- bool focusable_;
-
// System events -------------------------------------------------------------
// Called when the UI theme has changed, overriding allows individual Views to
@@ -1412,6 +1409,9 @@ class View : public AcceleratorTarget {
// Next view to be focused when the Shift-Tab key combination is pressed.
View* previous_focusable_view_;
+ // Whether this view can be focused.
+ bool focusable_;
+
// Whether this view is focusable if the user requires full keyboard access,
// even though it may not be normally focusable.
bool accessibility_focusable_;