Compare commits

...

1 Commits

Author SHA1 Message Date
15b0344dc8 hide cursor on marks page
Some checks failed
/ sync-to-origin (push) Has been cancelled
2025-06-18 17:32:46 +02:00

View File

@ -38,6 +38,7 @@ void win_show(WINDOW *win, const wchar_t *label, const int label_color,
void marks_page() {
current_allocated = &marks_allocated;
curs_set(0);
// thanks to lambda i can make this const
const json resp_from_api = [&]() -> json {
@ -132,6 +133,7 @@ void marks_page() {
endwin();
clear();
delete_all(&marks_allocated);
curs_set(1);
}
/* Put all the windows */