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 1858829..9fcff11 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -138,6 +138,7 @@ public:
138 138
139 inline const std::string &getScrollAction() const { return *resource.scroll_action; } 139 inline const std::string &getScrollAction() const { return *resource.scroll_action; }
140 inline const bool getScrollReverse() const { return *resource.scroll_reverse; } 140 inline const bool getScrollReverse() const { return *resource.scroll_reverse; }
141 inline const bool getDefaultExternalTabs() const { return *resource.default_external_tabs; }
141 142
142 inline Slit *slit() { return m_slit.get(); } 143 inline Slit *slit() { return m_slit.get(); }
143 inline const Slit *slit() const { return m_slit.get(); } 144 inline const Slit *slit() const { return m_slit.get(); }
@@ -446,6 +447,7 @@ private:
446 FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style; 447 FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style;
447 FbTk::Resource<std::string> scroll_action; 448 FbTk::Resource<std::string> scroll_action;
448 FbTk::Resource<bool> scroll_reverse; 449 FbTk::Resource<bool> scroll_reverse;
450 FbTk::Resource<bool> default_external_tabs;
449 451
450 } resource; 452 } resource;
451 453