GNOME Bugzilla – Bug 795684
Random Seed
Last modified: 2018-05-05 13:35:19 UTC
Any of the noise filters that have a "New Seed" option Clicking on "New Seed" results in a zero value - not very random
I think this problem has been fixed in this commit: https://git.gnome.org/browse/gimp/commit/?id=07c81abf018d68c50e4861b567328b79df1f0c9f
Indeed it has... commit 07c81abf018d68c50e4861b567328b79df1f0c9f Author: Ell <ell_se@yahoo.com> Date: Fri May 4 13:34:21 2018 -0400 app: fix propgui random seed generation After the switch of random-seed properties from INT to UINT, their upper bound results in a negative value when converted to a gint32, causing a CRITICAL in the call to g_random_int_range(). Use g_random_double_range() instead, which has enough precision to accurately represent all values in the range, and round the result.