Skip to content

Commit

Permalink
[ui] Add shortcuts for "Clear Images" and "Clear All Images" menu act…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
cbentejac committed Feb 15, 2023
1 parent b5d557b commit e4ca0eb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions meshroom/ui/qml/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,7 @@ ApplicationWindow {
id: clearImagesAction
property string tooltip: "Clear images for the current CameraInit group"
text: "Clear Images"
shortcut: "Ctrl+D"
onTriggered: {
_reconstruction.clearImages()
}
Expand All @@ -440,6 +441,7 @@ ApplicationWindow {
id: clearAllImagesAction
property string tooltip: "Clear all the images for all the CameraInit groups"
text: "Clear All Images"
shortcut: "Ctrl+Shift+D"
onTriggered: {
_reconstruction.clearAllImages()
}
Expand Down

0 comments on commit e4ca0eb

Please sign in to comment.