app: splash max size now half of width and height.

Apparently former 2/3 value was too big according to some.
This makes the splash take now at most a quarter of the screen area. I
really don't think that's too much anymore.
This commit is contained in:
Jehan
2018-03-26 21:16:04 +02:00
parent b6fbf37730
commit fae9c28354

View File

@ -112,8 +112,8 @@ splash_create (gboolean be_verbose,
g_return_if_fail (splash == NULL);
g_return_if_fail (GDK_IS_SCREEN (screen));
max_width = gdk_screen_get_width (screen) * 2 / 3;
max_height = gdk_screen_get_height (screen) * 2 / 3;
max_width = gdk_screen_get_width (screen) / 2;
max_height = gdk_screen_get_height (screen) / 2;
pixbuf = splash_image_load (max_width, max_height, be_verbose);
if (! pixbuf)