Bed Selector: Use extra large icons instead of large.

This commit is contained in:
YuSanka 2024-12-17 18:49:36 +01:00
parent 0bca90da13
commit 56cb063c3b

View File

@ -135,7 +135,6 @@ static const std::map<const wchar_t, std::string> font_icons_large = {
{ImGui::EjectButton , "notification_eject_sd" }, {ImGui::EjectButton , "notification_eject_sd" },
{ImGui::EjectHoverButton , "notification_eject_sd_hover" }, {ImGui::EjectHoverButton , "notification_eject_sd_hover" },
{ImGui::WarningMarker , "notification_warning" }, {ImGui::WarningMarker , "notification_warning" },
{ImGui::WarningMarkerDisabled , "notification_warning_grey" },
{ImGui::ErrorMarker , "notification_error" }, {ImGui::ErrorMarker , "notification_error" },
{ImGui::CancelButton , "notification_cancel" }, {ImGui::CancelButton , "notification_cancel" },
{ImGui::CancelHoverButton , "notification_cancel_hover" }, {ImGui::CancelHoverButton , "notification_cancel_hover" },
@ -155,7 +154,6 @@ static const std::map<const wchar_t, std::string> font_icons_large = {
{ImGui::OpenHoverButton , "notification_open_hover" }, {ImGui::OpenHoverButton , "notification_open_hover" },
{ImGui::SlaViewOriginal , "sla_view_original" }, {ImGui::SlaViewOriginal , "sla_view_original" },
{ImGui::SlaViewProcessed , "sla_view_processed" }, {ImGui::SlaViewProcessed , "sla_view_processed" },
{ImGui::SliceAllBtnIcon , "slice_all" },
}; };
static const std::map<const wchar_t, std::string> font_icons_medium = { static const std::map<const wchar_t, std::string> font_icons_medium = {
@ -180,6 +178,8 @@ static const std::map<const wchar_t, std::string> font_icons_medium = {
static const std::map<const wchar_t, std::string> font_icons_extra_large = { static const std::map<const wchar_t, std::string> font_icons_extra_large = {
{ImGui::ClippyMarker , "notification_clippy" }, {ImGui::ClippyMarker , "notification_clippy" },
{ImGui::SliceAllBtnIcon , "slice_all" },
{ImGui::WarningMarkerDisabled , "notification_warning_grey" },
}; };
ImGuiWrapper::ImGuiWrapper() ImGuiWrapper::ImGuiWrapper()