Skip to content

Commit f3b70cc

Browse files
kianmengvimpostor
authored andcommitted
Fix typos
Found via `codespell -H` and `typos --hidden --format brief`
1 parent 01c3599 commit f3b70cc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

doc/man/man1/blobdrop.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ frontend is used in all cases due to limitations of the Wayland protocol.
7272
This frontend shows an user interface that lists all items. Each item can be conveniently dragged on its own, or alternatively there is a button to drag all items at once.
7373

7474
.SS "immediate"
75-
This frontend starts the drag operation automatically without showing a GUI inbetween. The user does not need to hold any mouse button and can just move the mouse cursor to the target location and then click once to drop the files.
75+
This frontend starts the drag operation automatically without showing a GUI in between. The user does not need to hold any mouse button and can just move the mouse cursor to the target location and then click once to drop the files.
7676
.br
7777
Due to limitations in Wayland, this option is only available on X11. This option also works over XWayland, but then the target drop location is required to be running in XWayland too. Native Wayland does not have support for this frontend, because the spec requires an implicit grab for native wl_data_device::start_drag() operations, thus making it impossible to implement this workflow on Wayland.
7878
.br

src/backend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ void Backend::send_drag_notification(const QList<QString> &uris) {
9999

100100
void Backend::hide_terminal() {
101101
#if !defined(Q_OS_WIN) && !defined(Q_OS_DARWIN)
102-
if (Settings::get()->supress_always_on_bottom || !xcb.init()) {
102+
if (Settings::get()->suppress_always_on_bottom || !xcb.init()) {
103103
return;
104104
}
105105

src/settings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ Settings *Settings::create(QQmlEngine *qmlEngine, QJSEngine *jsEngine) {
99
}
1010

1111
void Settings::disable_always_on_bottom() {
12-
supress_always_on_bottom = true;
12+
suppress_always_on_bottom = true;
1313
}
1414

1515
void Settings::setAlwaysOnBottom(const bool v) {
16-
if (!supress_always_on_bottom) {
16+
if (!suppress_always_on_bottom) {
1717
always_on_bottom = v;
1818
emit alwaysOnBottomChanged(always_on_bottom);
1919
}

src/settings.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Settings : public QObject {
2525
Gui, // show a window to drag files from
2626
Immediate, // perform drag immediately without needing to hold down the mouse
2727
Notification, // show a desktop notification to drag from
28-
Stdout, // print a link in the terminal usin OSC8
28+
Stdout, // print a link in the terminal using OSC8
2929
};
3030

3131
STRICT_SINGLETON(Settings)
@@ -42,7 +42,7 @@ class Settings : public QObject {
4242
bool keep_dropped_files = false;
4343
bool frameless = false;
4444
bool can_drag_immediately = false;
45-
bool supress_always_on_bottom = false;
45+
bool suppress_always_on_bottom = false;
4646
signals:
4747
void alwaysOnBottomChanged(bool alwaysOnBottom);
4848
void keepDroppedFilesChanged(bool keepDroppedFiles);

0 commit comments

Comments
 (0)