diff options
Diffstat (limited to 'src/gui/widgets/browserbox.h')
-rw-r--r-- | src/gui/widgets/browserbox.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/widgets/browserbox.h b/src/gui/widgets/browserbox.h index c9219f9ba..51f8bb3ac 100644 --- a/src/gui/widgets/browserbox.h +++ b/src/gui/widgets/browserbox.h @@ -228,6 +228,9 @@ class BrowserBox final : public gcn::Widget, void setEnableKeys(bool n) { mEnableKeys = n; } + void setEnableTabs(bool n) + { mEnableTabs = n; } + std::string getTextAtPos(const int x, const int y) const A_WARN_UNUSED; int getPadding() const A_WARN_UNUSED @@ -265,6 +268,7 @@ class BrowserBox final : public gcn::Widget, bool mProcessVersion; bool mEnableImages; bool mEnableKeys; + bool mEnableTabs; int mPadding; int mNewLinePadding; |