kwo pushed a commit to branch master. http://git.enlightenment.org/e16/e16.git/commit/?id=091e3684ddf59d62e5704798c653c6ae2b64098f
commit 091e3684ddf59d62e5704798c653c6ae2b64098f Author: Kim Woelders <[email protected]> Date: Wed May 12 03:15:20 2021 +0200 systray: Change default icon size to 32 Size 16 is a bit small and seems to be problematic these days. --- src/systray.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/systray.c b/src/systray.c index 23dc0edb..938cdfb8 100644 --- a/src/systray.c +++ b/src/systray.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2015 Kim Woelders + * Copyright (C) 2004-2021 Kim Woelders * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to @@ -448,7 +448,7 @@ SystrayInit(Container * ct) ct->wm_name = "Systray"; ct->menu_title = _("Systray Options"); ct->dlg_title = _("Systray Settings"); - ct->iconsize = 16; + ct->iconsize = 32; } static void --
