forked from Green-Sky/tomato
fix image() after imgui update
This commit is contained in:
parent
c3d53a2ecf
commit
d9f2f90a5a
@ -1336,11 +1336,12 @@ void ChatGui4::renderMessageBodyFile(Message3Registry& reg, const Message3 e) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
auto [id, img_width, img_height] = _b_tc.get(o);
|
auto [id, img_width, img_height] = _b_tc.get(o);
|
||||||
ImGui::Image(
|
ImGui::ImageWithBg(
|
||||||
id,
|
id,
|
||||||
bar_size,
|
bar_size,
|
||||||
{0.f, 0.f}, // default
|
{0.f, 0.f}, // default
|
||||||
{1.f, 1.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)
|
ImGui::GetStyleColorVec4(ImGuiCol_PlotHistogram)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user