Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/egegapi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2022,7 +2022,7 @@ static Gdiplus::GraphicsPath* createRoundRectPath(float x, float y, float w, flo

void ege_roundrect(float x, float y, float w, float h, float radius, PIMAGE pimg)
{
ege_roundrect(x, y, w, h, radius, radius, radius, radius);
ege_roundrect(x, y, w, h, radius, radius, radius, radius, pimg);
}
Comment thread
FeJS8888 marked this conversation as resolved.
void ege_fillroundrect(float x, float y, float w, float h, float radius, PIMAGE pimg)
{
Expand Down
Loading