make shortcut "export"
a key sequence for export would be great.
Maybe Strg
+e
or Strg
+ shift
+ e
?
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
- a.boomers added discussion suggestion usability labels
added discussion suggestion usability labels
Little info:
Code implementation would be:
auto *exportShortCut = new QShortcut{QKeySequence("Ctrl+e"), this}; connect(exportShortCut, &QShortcut::activated, this, [=]() { exportTracker(); });
in
Petrack::Petrack
or maybePetrack::createActions
, even though it is not an action, most shortcuts get created there...NOTE:
Ctrl+e
is already used forExport Video View
|Ctrl+Shift+e
works- Owner
Discussions:
- Should we change the shortcut of
Export Video View
? This is a shortcut which is not frequently used at the moment. - Should
trc
andtxt
be exported?- Better only
trc
astxt
is only exported once in the end, and might get more expensive when using a more complex missing frame detection.
- Better only
- Should we change the shortcut of
- d.kilic created branch
269-make-shortcut-export
to address this issuecreated branch
269-make-shortcut-export
to address this issue - d.kilic mentioned in merge request !202 (merged)
mentioned in merge request !202 (merged)
- d.kilic closed with merge request !202 (merged)
closed with merge request !202 (merged)
Please register or sign in to reply