From 65b699f7708eba7c504d8593be749fa4e0cd57c3 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Tue, 16 Feb 2016 07:48:25 +0100 Subject: 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 --- src/ui-day.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/ui-day.c') diff --git a/src/ui-day.c b/src/ui-day.c index 84beb77..4b004f7 100644 --- a/src/ui-day.c +++ b/src/ui-day.c @@ -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) -- cgit v1.2.3-54-g00ecf