diff --git a/Form1.cs b/Form1.cs index ed89978..258cf1d 100644 --- a/Form1.cs +++ b/Form1.cs @@ -322,7 +322,7 @@ namespace photo_sorter if (global.filecount > 1) next_image(); return true; - case Keys.Shift | Keys.Home: + case Keys.Control | Keys.Home: if (global.filecount > 1) { status_msg("Loading first image..."); @@ -330,7 +330,7 @@ namespace photo_sorter update_image(); } return true; - case Keys.Shift | Keys.End: + case Keys.Control | Keys.End: if (global.filecount > 1) { status_msg("Loading final image..."); @@ -606,7 +606,7 @@ namespace photo_sorter 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)