New icons

This commit is contained in:
Bruno Herbelin
2024-11-08 17:59:00 +01:00
parent 19221e1fcc
commit c063e2fc30
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@@ -234,7 +234,7 @@ void TransitionView::draw()
// toggle transition mode
ImGui::SetCursorScreenPos(ImVec2(pos_tran.x - 60.f, pos_tran.y +2.f));
const char *tooltip[2] = {"Fade to black", "Cross fading"};
ImGuiToolkit::IconToggle(0, 2, 0, 8, &Settings::application.transition.cross_fade, tooltip );
ImGuiToolkit::IconToggle(9, 8, 0, 8, &Settings::application.transition.cross_fade, tooltip );
ImGui::SetCursorScreenPos(ImVec2(pos_tran.x + 10.f, pos_tran.y + 2.f));
const char *_tooltip[2] = {"Linear", "Quadratic"};

View File

@@ -6021,7 +6021,7 @@ void Navigator::RenderTransitionPannel(const ImVec2 &iconsize)
static std::vector< std::tuple<int, int, std::string> > profile_fading = {
{0, 8, "Cross fading"},
{0, 2, "Fade to black"}
{9, 8, "Fade to black"}
};
ImGui::SetNextItemWidth(IMGUI_RIGHT_ALIGN);
int tmp = Settings::application.transition.cross_fade ? 0 : 1;