| Summary: | Oversized icons in left toolbar | ||
|---|---|---|---|
| Product: | [Applications] krita | Reporter: | Kvaks <vaksdal> |
| Component: | Dockers | Assignee: | Krita Bugs <krita-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | halla, osxyz |
| Priority: | NOR | ||
| Version First Reported In: | 2.9.7 | ||
| Target Milestone: | --- | ||
| Platform: | Kubuntu | ||
| OS: | Linux | ||
| URL: | http://imgur.com/ZCpE0Od | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | krita config file | ||
|
Description
Kvaks
2015-11-10 15:48:39 UTC
Yes, it's the pixel size of the screen that Krita is looking at, you should be getting the default 22px size for really big screens, as per this code:
QRect rc = qApp->desktop()->screenGeometry(screen);
if (rc.width() <= 1024) {
return 12;
}
else if (rc.width() <= 1377) {
return 14;
}
else if (rc.width() <= 1920 ) {
return 16;
}
else {
return 22;
}
But it looks like 32 or 48; can you:
* remove your kritarc
* start krita (which should reproduce the bug)
* close krita (which should save a new kritarc)
* and attach the kritarc to the bug?
Created attachment 95437 [details]
krita config file
The bug is reproduced when starting Krita without a kritarc file (deleted). This is the kritarc file that is subsequently saved when exiting Krita.
@Kvaks Do you still have this bug in the latest version of Krita (3.0.1 alpha2) ? Let me see... No, the icons are no longer oversized in version 3.0.1 alpha2. You fixed it! Very nice! Thanks! No... I don't fixed it - I'm just an artist :). I simply supposed that somebody else fixed this... I remember some disscusion about HDPI screens support done in Krita. |