mirror of
https://github.com/Xevion/bulk-reminders.git
synced 2025-12-10 20:06:40 -06:00
Improve data + time parsing functionality
Now allows one to enter just one date or one date and time together.
This commit is contained in:
@@ -141,6 +141,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
|
||||
self.eventsView.setRowCount(len(events))
|
||||
logger.debug(f'Populating table with {self.eventsView.rowCount()} events.')
|
||||
for row, event in enumerate(events):
|
||||
logger.debug(f'Event "{event.summary}" starts {event.start} and ends {event.end}')
|
||||
event.fill_row(row, self.eventsView)
|
||||
|
||||
self.submitButton.setDisabled(len(self.readyEvents) < 0)
|
||||
|
||||
Reference in New Issue
Block a user