- fix: Scroll bar arrow size not correct in the dark themes.

This commit is contained in:
Roy Qu 2024-07-05 07:31:30 +08:00
parent 153e5edc6a
commit b3247dd2e8
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
Red Panda C++ Version 3.2
- Change: The way to calcuate astyle path.
- fix: Scroll bar arrow size not correct in the dark themes.
Red Panda C++ Version 3.1

View File

@ -98,7 +98,7 @@ static qreal calcDpi() {
}
static qreal calcDpiScaled(qreal value, qreal dpi) {
return value*96/dpi;
return value*dpi/96;
}
}