Skip to content

Commit

Permalink
Fix 'bgColor' not being passed to 'ImGui::ImageButton' (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
vittorioromeo authored Mar 25, 2021
1 parent 63efdde commit 945f578
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imgui-SFML.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ bool ImageButton(const sf::Texture& texture, const sf::Vector2f& size, const int
ImTextureID textureID = convertGLTextureHandleToImTextureID(texture.getNativeHandle());

return ImGui::ImageButton(textureID, ImVec2(size.x, size.y), ImVec2(0, 0), ImVec2(1, 1),
framePadding, toImColor(tintColor), toImColor(tintColor));
framePadding, toImColor(bgColor), toImColor(tintColor));
}

/////////////// Image Button Overloads for sf::RenderTexture
Expand All @@ -610,7 +610,7 @@ bool ImageButton(const sf::RenderTexture& texture, const sf::Vector2f& size, con
return ImGui::ImageButton(textureID, ImVec2(size.x, size.y), ImVec2(0, 1),
ImVec2(1, 0), // flipped vertically, because textures in
// sf::RenderTexture are stored this way
framePadding, toImColor(tintColor), toImColor(tintColor));
framePadding, toImColor(bgColor), toImColor(tintColor));
}

/////////////// Image Button Overloads for sf::Sprite
Expand Down

0 comments on commit 945f578

Please sign in to comment.