Updated hotkeys

sort-delete
Aaron 3 years ago
parent 894b22cff5
commit 9170a6ed09

@ -322,7 +322,7 @@ namespace photo_sorter
if (global.filecount > 1) if (global.filecount > 1)
next_image(); next_image();
return true; return true;
case Keys.Shift | Keys.Home: case Keys.Control | Keys.Home:
if (global.filecount > 1) if (global.filecount > 1)
{ {
status_msg("Loading first image..."); status_msg("Loading first image...");
@ -330,7 +330,7 @@ namespace photo_sorter
update_image(); update_image();
} }
return true; return true;
case Keys.Shift | Keys.End: case Keys.Control | Keys.End:
if (global.filecount > 1) if (global.filecount > 1)
{ {
status_msg("Loading final image..."); status_msg("Loading final image...");
@ -606,7 +606,7 @@ namespace photo_sorter
private void globalHotkeysListToolStripMenuItem_Click(object sender, EventArgs e) private void globalHotkeysListToolStripMenuItem_Click(object sender, EventArgs e)
{ {
MessageBox .Show("Global Hotkeys\n\nPgUp == Previous image\nPgDn == Next image\nHome == Go to first unsorted image\nEnd == Go to final unsorted image\n\nEnter == Sort photo to current options\n"); MessageBox .Show("Global Hotkeys\n\nPgUp == Previous image\nPgDn == Next image\nCtrl + Home == Go to first unsorted image\nCtrl + End == Go to final unsorted image\n\nEnter == Sort photo to current options\n\nDelete OR Shift + Enter == Delete image\n");
} }
private void tsi_enableGlobalHotkeys_Click(object sender, EventArgs e) private void tsi_enableGlobalHotkeys_Click(object sender, EventArgs e)

Loading…
Cancel
Save