Skip to content

Commit 5cb10be

Browse files
committed
Use consistent phrasing in help
1 parent 580d3a1 commit 5cb10be

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/man/man1/blobdrop.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ frontend to intercept another drag and drop operation. Once an element is droppe
5151
option determines the frontend of the outgoing converted drag and drop event.
5252
.TP
5353
.B \-I, \-\-icon-only
54-
Show only the thumbnail icons in windows. This option has no effect if a frontend other than the
54+
Show only thumbnail icons. This option has no effect if a frontend other than the
5555
.B gui
5656
frontend is active.
5757
.TP

src/getopts.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bool parse(const QStringList &args) {
3333
"Spawn window at the mouse cursor.");
3434
QCommandLineOption frontend_opt(QStringList() << "f"
3535
<< "frontend",
36-
"Selects the frontend. Must be one of:" + QString::fromStdString(frontends_descr) + " (auto is default)",
36+
"Selects the frontend. Must be one of:" + QString::fromStdString(frontends_descr) + " (default auto).",
3737
"frontend");
3838
QCommandLineOption intercept_opt(QStringList() << "i"
3939
<< "intercept",
@@ -56,14 +56,14 @@ bool parse(const QStringList &args) {
5656
"Enable ssh remote transparency.");
5757
QCommandLineOption thumbnailsize_opt(QStringList() << "s"
5858
<< "thumb-size",
59-
"Set thumbnail size (default 64)",
59+
"Set thumbnail size (default 64).",
6060
"size");
6161
QCommandLineOption ontop_opt(QStringList() << "t"
6262
<< "ontop",
6363
"Keep the window on top of other windows.");
6464
QCommandLineOption auto_quit_opt(QStringList() << "x"
6565
<< "auto-quit",
66-
"The amount of drags after which the program should automatically close. Must be one of:" + QString::fromStdString(auto_quit_descr) + " (all is default)",
66+
"The amount of drags after which the program should automatically close. Must be one of:" + QString::fromStdString(auto_quit_descr) + " (default all).",
6767
"behaviour");
6868

6969
p.addOptions({frameless_opt, cursor_opt, frontend_opt, intercept_opt, icononly_opt, keep_opt, persistent_opt, prefix_opt, remote_opt, thumbnailsize_opt, ontop_opt, auto_quit_opt});

0 commit comments

Comments
 (0)