On 2021-01-26, Halla Rempt wrote:
> Ah... I guess that explains it. GenericDataLocation is only useful in a linux
> distribution packages setup, because it's the location that's shared with
> other applications, so we patch ki18n to use AppDataLocation -- I guess we'll
> have to patch ECM as we
We are pleased to announce that CMake 3.19.5 is now available for download.
Please use the latest release from our download page:
https://cmake.org/download/
Thanks for your support!
Changes made since CMake 3.19.4:
Hello!
I'm having some issues with a QT application I'm developing right now,
but only on KDE, the same code works perfectly on GNOME.
I'm using the following code snippet:
// In my header file
QAction *m_newTabAction;
QToolButton *addTabButton;
// The actual code
m_newTabAction = newQAction(
> m_newTabAction->setIcon(QIcon(QLatin1String(":graphics/addtab.png")));
First guess: The Breeze icon engine (which enables color schemes to recolor
monochrome icons) can not handle Qt ressource paths. Did you try to install
the image as ordinary file, and use that file as icon?
If that is the
Thank you for your reply!
I'm sure it's being loaded correctly. I already tried using a QPixmap, a
local file, and replaced the Close Tab button (Which works) with that icon.
m_newTabAction->setIcon(QIcon(QLatin1String(":graphics/addtab.png")));
First guess: The Breeze icon engine (which enab