Skip to content

Commit a0c3a31

Browse files
committed
Fixed new option descriptions
1 parent e21cf8a commit a0c3a31

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Application.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,13 +221,14 @@ void Application::createSettingsEntries()
221221
secScreenshots->addEntry(std::move(entry));
222222

223223
entry.reset(new SettingsEntry(*secScreenshots, "after_save_action", 0, "After save",
224-
"Sets the size of the toolbar icons",
224+
"What to do after saving a screenshot to the file",
225225
"combobox", false, 2, { {0, "Open folder"}, {1, "Open file"}, {2, "Do nothing"} }));
226226
secScreenshots->addEntry(std::move(entry));
227227

228228
entry.reset(new SettingsEntry(*secScreenshots, "bg_checker", false, "Checkered background in clipboard",
229-
"Fill screenshot background with a checkerboard (if no, transparency is kept "
230-
"and MIME type in a clipboard becomes 'PNG')",
229+
"Fill screenshot background with a checkerboard (otherwise\n"
230+
"transparency is kept when pasting to applications that\n"
231+
"support transparent images)",
231232
"checkbox", false, 3));
232233
secScreenshots->addEntry(std::move(entry));
233234

0 commit comments

Comments
 (0)