diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-09-21 12:16:42 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-09-23 11:49:30 -0700 |
commit | 4eb8ed1b29685a10b56f213c4fc6aca440c00601 (patch) | |
tree | 75d3287856081336d0caba1c3d18c899470cfcc9 /desktop-widgets/downloadfromdivecomputer.h | |
parent | 99261775ceede62e19422f6c909439a619d65ee0 (diff) | |
download | subsurface-4eb8ed1b29685a10b56f213c4fc6aca440c00601.tar.gz |
Desktop/remember DCs: hook up the shortcut buttons
The straight forward code to update the currentIndex of the combobox doesn't
appear to work on macOS (but works fine on Linux). Calling the event loop and
then calling update afterwards seems very unintuitive, but it appears to fix
the issue in my testing.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/downloadfromdivecomputer.h')
-rw-r--r-- | desktop-widgets/downloadfromdivecomputer.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/desktop-widgets/downloadfromdivecomputer.h b/desktop-widgets/downloadfromdivecomputer.h index f9cc83e64..78e2923ce 100644 --- a/desktop-widgets/downloadfromdivecomputer.h +++ b/desktop-widgets/downloadfromdivecomputer.h @@ -50,6 +50,11 @@ slots: void checkDumpFile(int state); void pickDumpFile(); void pickLogFile(); + void DC1Clicked(); + void DC2Clicked(); + void DC3Clicked(); + void DC4Clicked(); + #if defined(BT_SUPPORT) void enableBluetoothMode(int state); void selectRemoteBluetoothDevice(); |