Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed May 18, 2024
1 parent f94d49d commit 027c73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/embed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ auto getIconPixmap(std::string_view name, int width, int height, const char* con

const auto pixmapName = QString::fromUtf8(name.data(), name.size());
const auto cacheName = (width > 0 && height > 0)
? QStringLiteral("%1_%2_%3").arg(pixmapName, width, height)
? QStringLiteral("%1_%2_%3").arg(pixmapName).arg(width).arg(height)
: pixmapName;

// Return cached pixmap if it exists
Expand Down

0 comments on commit 027c73a

Please sign in to comment.