Make automatic selection of appointments/events smarter

Keep item selection when an item is moved (e.g. by changing the start
time or description).

Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
This commit is contained in:
Lukas Fleischer
2016-02-16 07:48:25 +01:00
parent feb059e8cf
commit 65b699f770
4 changed files with 37 additions and 0 deletions

View File

@@ -38,6 +38,21 @@
struct day_item day_cut[38] = { {0, 0, {NULL}} };
struct day_item *ui_day_selitem(void)
{
if (day_item_count(0) <= 0)
return NULL;
return day_get_item(listbox_get_sel(&lb_apt));
}
void ui_day_set_selitem(struct day_item *day)
{
int n = day_get_position(day);
if (n >= 0)
listbox_set_sel(&lb_apt, n);
}
/* Request the user to enter a new time. */
static int day_edit_time(int time, unsigned *new_hour,
unsigned *new_minute)