diff options
-rw-r--r-- | main.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -80,6 +80,9 @@ int main(int argc, char **argv) { } got::checkIn(*choice); gui::showNotification("Checked in to sheet '" + *choice + "'"); + if (auto descr = gui::promptText("Set text for this '" + *choice + "' entry:")) { + got::editRunning(*descr); + } } }); @@ -97,6 +100,9 @@ int main(int argc, char **argv) { if (got::getRunning()) got::checkOut(); got::checkIn("misc"); gui::showNotification("Switched to 'misc'"); + if (auto descr = gui::promptText("Set text for this 'misc' entry:")) { + got::editRunning(*descr); + } }); matcher.addSequence({Config::TRIGGER_KEY_X}, []() { |