summaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-07-25 22:13:12 +0300
committerAndrei Karas <akaras@inbox.ru>2017-07-25 22:13:12 +0300
commitc2b3279615398942adce087119bde9e4fcfd9ab0 (patch)
tree21b43a51e437f08ef661c7095facd16d0ad72518 /src/options.h
parentfe64e7204c8ab7b91f36c305cce9f82e92792cb9 (diff)
downloadplus-c2b3279615398942adce087119bde9e4fcfd9ab0.tar.gz
plus-c2b3279615398942adce087119bde9e4fcfd9ab0.tar.bz2
plus-c2b3279615398942adce087119bde9e4fcfd9ab0.tar.xz
plus-c2b3279615398942adce087119bde9e4fcfd9ab0.zip
Remove command line option --default-cursor and add option --hide-cursor.s20170725
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options.h b/src/options.h
index ae7e57d24..9bfd405ac 100644
--- a/src/options.h
+++ b/src/options.h
@@ -65,7 +65,7 @@ struct Options final
safeMode(false),
testMode(false),
ipc(false),
- defaultCursor(false),
+ hideCursor(false),
error(false),
validate(false)
{}
@@ -97,7 +97,7 @@ struct Options final
bool safeMode;
bool testMode;
bool ipc;
- bool defaultCursor;
+ bool hideCursor;
bool error;
bool validate;
};