https://bugs.kde.org/show_bug.cgi?id=429454

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|INTENTIONAL                 |---
             Status|RESOLVED                    |REPORTED

--- Comment #14 from [email protected] ---
The suggested solution is to read the icons from the HDD at the start of the
software. Here is an example for an icon with Kate in “kate/main.cpp”:

QIcon icon = QIcon::fromTheme(QStringLiteral("new-document"));
// without “isNull()”, the icon is not read
icon.isNull();

The icon is read from the HDD at the start of the software. “strace -e file
build/kate/kate” does not mention “new-document” at the time of a click to
“File”, so the icon cannot block the GUI.
Read all icons requires less than 0,5 second and ~0,1 MiB more memory without
any pixmap.


I set the status to “REPORTED” because there is at least one imperceptible
solution.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to