aboutsummaryrefslogtreecommitdiff
path: root/src/ui.cc
diff options
context:
space:
mode:
authorYour Name <you@example.com>2021-08-17 08:54:45 -0400
committerYour Name <you@example.com>2021-08-17 08:54:45 -0400
commit5e4240ea795c992635a3cfc464d760205e07bf05 (patch)
treeb2a19cded0a2194a4554ceca7a1bbb69d1633701 /src/ui.cc
parent8c884838ced928d29a8436be8b2808766c5a1e53 (diff)
downloadannotator-5e4240ea795c992635a3cfc464d760205e07bf05.tar.gz
annotator-5e4240ea795c992635a3cfc464d760205e07bf05.tar.bz2
annotator-5e4240ea795c992635a3cfc464d760205e07bf05.zip
Updated keys
Diffstat (limited to 'src/ui.cc')
-rw-r--r--src/ui.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui.cc b/src/ui.cc
index 3d0e193..82e874d 100644
--- a/src/ui.cc
+++ b/src/ui.cc
@@ -10,7 +10,7 @@ namespace frontend {
struct ui_impl {
std::shared_ptr<playback> pb;
std::shared_ptr<backend::labeller> llr;
- bool play = true;
+ bool play = false;
bool stalePrintout = true;
};
@@ -25,8 +25,8 @@ namespace frontend {
data->stalePrintout = true;
if(keycode >= 48 && keycode <= 57) { // Number -> label
std::size_t num = keycode - 48;
- if(num < data->llr->getLabels().size()) {
- data->llr->applyLabel(data->llr->getLabels()[num], data->pb->getTime());
+ if(num <= data->llr->getLabels().size()) {
+ data->llr->applyLabel(data->llr->getLabels()[num-1], data->pb->getTime());
}
} else {
switch(keycode) {
@@ -78,7 +78,7 @@ namespace frontend {
std::cout << "Annotations:" << std::endl;
int num = 0;
for(auto ann : data->llr->getLabels()) {
- std::cout << num++ << ": " << ann << std::endl;
+ std::cout << ++num << ": " << ann << std::endl;
}
// Get window size
struct winsize size;