summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-03-26 00:29:02 +0300
committerAndrei Karas <akaras@inbox.ru>2014-03-26 00:29:02 +0300
commit0c6809ad24bce28c8ae587d646c0287be88de101 (patch)
treedf4412be46ae8f4e76be719079ccccc87ccc5223 /src/client.cpp
parent3d2dfc097a0967eb31f738c7005d08552b17d614 (diff)
downloadplus-0c6809ad24bce28c8ae587d646c0287be88de101.tar.gz
plus-0c6809ad24bce28c8ae587d646c0287be88de101.tar.bz2
plus-0c6809ad24bce28c8ae587d646c0287be88de101.tar.xz
plus-0c6809ad24bce28c8ae587d646c0287be88de101.zip
Add option to hide support page link in error dialog.
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 4dccaf0cc..70f27f773 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -2987,7 +2987,7 @@ Window *Client::openErrorDialog(const std::string &header,
const std::string &message,
const bool modal)
{
- if (getSupportUrl().empty())
+ if (getSupportUrl().empty() || config.getBoolValue("hidesupport"))
{
return new OkDialog(header, message, DIALOG_ERROR, modal);
}