Skip to content

Commit

Permalink
[#59] TrackEditor: Improvements and bugfixes (Part 21: Cumulative min…
Browse files Browse the repository at this point in the history
…or improvements)
  • Loading branch information
tomas-nestorovic committed Apr 25, 2021
1 parent df2e56b commit a780a56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Main/res/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -703,8 +703,8 @@ BEGIN
MENUITEM "Previous event\tCtrl+Left", ID_FILE_SHIFT_DOWN
MENUITEM "Next event\tCtrl+Right", ID_FILE_SHIFT_UP
MENUITEM SEPARATOR
MENUITEM "Previous interval\tShift+PgUp", ID_RECORD_PREV
MENUITEM "Next interval\tShift+PgDown", ID_RECORD_NEXT
MENUITEM "Previous mark\tShift+PgUp", ID_RECORD_PREV
MENUITEM "Next mark\tShift+PgDown", ID_RECORD_NEXT
MENUITEM SEPARATOR
MENUITEM "Previous index\tCtrl+PgUp", ID_PREV
MENUITEM "Next index\tCtrl+PgDown", ID_NEXT
Expand Down
1 change: 1 addition & 0 deletions Main/src/Image_TrackEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,7 @@
switch (u){
case 's': t64=TIME_SECOND(t64); break;
case 'm': t64=TIME_MILLI(t64); break;
case 'µ':
case 'u': t64=TIME_MICRO(t64); break;
default: t64=TIME_NANO(t64); break;
}
Expand Down

0 comments on commit a780a56

Please sign in to comment.