Skip to content

Commit

Permalink
GuiWidget: Downsample the blur more (x4)
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jun 11, 2013
1 parent c24e1e2 commit f9deb25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/client/src/ui/widgets/guiwidget.cpp
Expand Up @@ -82,7 +82,7 @@ DENG2_PIMPL(GuiWidget)
if(blurInited) return;

// The blurred version of the view is downsampled.
blurSize = (self.root().viewSize() / 2).max(Vector2ui(1, 1));
blurSize = (self.root().viewSize() / 4).max(Vector2ui(1, 1));

for(int i = 0; i < 2; ++i)
{
Expand Down

0 comments on commit f9deb25

Please sign in to comment.