Skip to content

Commit

Permalink
Fixed|Updater|UI: Apply HiDPI scaling in download progress indicator
Browse files Browse the repository at this point in the history
This ideally should use a Rule, though.
  • Loading branch information
skyjake committed Jul 8, 2014
1 parent 682bbe3 commit 6c15822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/client/src/updater/downloaddialog.cpp
Expand Up @@ -75,7 +75,7 @@ DENG2_PIMPL(DownloadDialog)

progress = new ProgressWidget;
area.add(progress);
progress->setImageScale(.4f);
progress->setImageScale(toDevicePixels(.4f));
progress->setAlignment(ui::AlignLeft);
progress->setSizePolicy(ui::Fixed, ui::Expand);
progress->setRange(Rangei(0, 100));
Expand Down

0 comments on commit 6c15822

Please sign in to comment.