issue fixes
This commit is contained in:
@@ -180,6 +180,9 @@ SECTIONS = [
|
||||
"params": [
|
||||
# TODO: implement drop
|
||||
{"name": "EPOCH_HANDLING", "default": ["shift"], "type": list, "options": ["shift", "strict"], "help": "What to do if two unique events occur at the same time. Shift will automatically move one event to the first valid free index. Strict will raise an error processing the file. Drop will remove one of the events."},
|
||||
{"name": "MAX_SHIFT", "default": 5, "type": int, "depends_on": "EPOCH_HANDLING", "depends_value": "shift", "help": "Amount of indexes to look ahead and see if there is a valid one to shift to. If none were found, will fall back to 'strict' behaviour."},
|
||||
{"name": "T_MIN", "default": -5, "type": int, "help": "Seconds before the epoch to be used."},
|
||||
{"name": "T_MAX", "default": 15, "type": int, "help": "Seconds after the epoch to be used."},
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -4830,7 +4833,8 @@ class MainApplication(QMainWindow):
|
||||
|
||||
self.pending_files_count = 0
|
||||
# Increment session so any 'in-flight' callbacks are ignored
|
||||
self.loading_session_id += 1
|
||||
if hasattr(self, "loading_session_id"):
|
||||
self.last_clicked_bubble += 1
|
||||
|
||||
# Disconnect the buttons to break potential closures
|
||||
for btn in [self.button1, self.button3]:
|
||||
|
||||
Reference in New Issue
Block a user