Skip to content

Commit

Permalink
Fixed new option descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
niello committed Jul 20, 2019
1 parent e21cf8a commit a0c3a31
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,13 +221,14 @@ void Application::createSettingsEntries()
secScreenshots->addEntry(std::move(entry));

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

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

Expand Down

0 comments on commit a0c3a31

Please sign in to comment.