fix image() after imgui update
Some checks failed
ContinuousDelivery / linux-ubuntu (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
ContinuousDelivery / windows (push) Has been cancelled
ContinuousDelivery / windows-asan (push) Has been cancelled
ContinuousDelivery / dumpsyms (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
ContinuousIntegration / linux (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled

This commit is contained in:
Green Sky 2025-04-09 19:35:54 +02:00
parent c3d53a2ecf
commit d9f2f90a5a
No known key found for this signature in database
GPG Key ID: DBE05085D874AB4A

View File

@ -1336,11 +1336,12 @@ void ChatGui4::renderMessageBodyFile(Message3Registry& reg, const Message3 e) {
);
auto [id, img_width, img_height] = _b_tc.get(o);
ImGui::Image(
ImGui::ImageWithBg(
id,
bar_size,
{0.f, 0.f}, // default
{1.f, 1.f}, // default
{0.f, 0.f, 0.f, 0.f}, // sadly bg was moved before tint (???)
ImGui::GetStyleColorVec4(ImGuiCol_PlotHistogram)
);
}