Skip to content

Commit

Permalink
Fixed swapped left and right.
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma-axis committed Feb 19, 2025
1 parent 5507a59 commit cbedc1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reactive_dlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1954,7 +1954,7 @@ struct Easings : SettingDlg {
if (!info.has_easing()) return false;

value = info_l.value();
append_menu(menu, id, false, L"上書き: 左 \u25c0 右 (%.*f)", // Black Right-Pointing Triangle
append_menu(menu, id, false, L"上書き: 左 \u25b6 右 (%.*f)", // Black Right-Pointing Triangle
static_cast<int>(0.5 + std::log10(info.prec)), value);
return true;
}
Expand All @@ -1973,7 +1973,7 @@ struct Easings : SettingDlg {
if (!info.has_easing()) return false;

value = info_r.value();
append_menu(menu, id, false, L"上書き: 左 \u25b6 右 (%.*f)", // Black Left-Pointing Triangle
append_menu(menu, id, false, L"上書き: 左 \u25c0 右 (%.*f)", // Black Left-Pointing Triangle
static_cast<int>(0.5 + std::log10(info.prec)), value);
return true;
}
Expand Down

0 comments on commit cbedc1f

Please sign in to comment.