aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 7ea6f53..77a5169 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -149,6 +149,7 @@ public:
149 149
150 inline const std::string &getScrollAction() const { return *resource.scroll_action; } 150 inline const std::string &getScrollAction() const { return *resource.scroll_action; }
151 inline const bool getScrollReverse() const { return *resource.scroll_reverse; } 151 inline const bool getScrollReverse() const { return *resource.scroll_reverse; }
152 inline const bool allowRemoteActions() const { return *resource.allow_remote_actions; }
152 inline const bool getDefaultInternalTabs() const { return *resource.default_internal_tabs; } 153 inline const bool getDefaultInternalTabs() const { return *resource.default_internal_tabs; }
153 inline const bool getMaxOverTabs() const { return *resource.max_over_tabs; } 154 inline const bool getMaxOverTabs() const { return *resource.max_over_tabs; }
154 155
@@ -582,6 +583,7 @@ private:
582 FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style; 583 FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style;
583 FbTk::Resource<std::string> scroll_action; 584 FbTk::Resource<std::string> scroll_action;
584 FbTk::Resource<bool> scroll_reverse; 585 FbTk::Resource<bool> scroll_reverse;
586 FbTk::Resource<bool> allow_remote_actions;
585 FbTk::Resource<bool> max_over_tabs; 587 FbTk::Resource<bool> max_over_tabs;
586 FbTk::Resource<bool> default_internal_tabs; 588 FbTk::Resource<bool> default_internal_tabs;
587 589