Re: How are tier 1 framework qm translations supposed to be loaded?

2021-02-15 Thread Sune Vuorela
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

[ANNOUNCE] CMake 3.19.5 available for download

2021-02-15 Thread Tom Osika
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:

QToolButton not displayed correctly on KDE

2021-02-15 Thread Aaron Dewes
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(

Re: QToolButton not displayed correctly on KDE

2021-02-15 Thread David Hurka
> 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

Re: QToolButton not displayed correctly on KDE

2021-02-15 Thread Aaron Dewes
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