diff options
author | Jan Holesovsky <kendy@collabora.com> | 2013-12-20 14:39:02 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2013-12-20 14:39:02 +0100 |
commit | e07097cce36f1220f5574a80dc22eeabb3005261 (patch) | |
tree | 8befe80a69ff05fc08a97dc933b7817190b7ceeb /sd/source | |
parent | 021df5c249c90908278d04ea80024fb235abf3e8 (diff) |
hidpi: Use the default scaling algorithm.
We are not on _that_ time critical path when setting up images for the UI, so
let's have at least some quality there :-)
Change-Id: I0a82106b0d60ac6a543d5e55c48fc86b6d5f60b1
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/sidebar/LayoutMenu.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/sidebar/LayoutMenu.cxx b/sd/source/ui/sidebar/LayoutMenu.cxx index 5abb05ca0f5e..55a91577c4a3 100644 --- a/sd/source/ui/sidebar/LayoutMenu.cxx +++ b/sd/source/ui/sidebar/LayoutMenu.cxx @@ -651,7 +651,7 @@ void LayoutMenu::Fill (void) BitmapEx aBmp(SdResId(pInfo->mnBmpResId)); if (GetDPIScaleFactor() > 1) - aBmp.Scale(GetDPIScaleFactor(), GetDPIScaleFactor(), BMP_SCALE_FAST); + aBmp.Scale(GetDPIScaleFactor(), GetDPIScaleFactor()); if (bRightToLeft && (WritingMode_TB_RL != pInfo->meWritingMode)) aBmp.Mirror (BMP_MIRROR_HORZ); |