mirror of https://github.com/GNOME/gimp.git
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.
This commit is contained in:
parent
48f6d1b8ee
commit
07c81abf01
|
@ -23,6 +23,7 @@
|
||||||
#include <gegl.h>
|
#include <gegl.h>
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
|
#include "libgimpmath/gimpmath.h"
|
||||||
#include "libgimpwidgets/gimpwidgets.h"
|
#include "libgimpwidgets/gimpwidgets.h"
|
||||||
|
|
||||||
#include "propgui-types.h"
|
#include "propgui-types.h"
|
||||||
|
@ -211,8 +212,10 @@ static void
|
||||||
gimp_prop_random_seed_new_clicked (GtkButton *button,
|
gimp_prop_random_seed_new_clicked (GtkButton *button,
|
||||||
GtkAdjustment *adj)
|
GtkAdjustment *adj)
|
||||||
{
|
{
|
||||||
guint32 value = g_random_int_range (gtk_adjustment_get_lower (adj),
|
guint32 value;
|
||||||
gtk_adjustment_get_upper (adj));
|
|
||||||
|
value = floor (g_random_double_range (gtk_adjustment_get_lower (adj),
|
||||||
|
gtk_adjustment_get_upper (adj) + 1.0));
|
||||||
|
|
||||||
gtk_adjustment_set_value (adj, value);
|
gtk_adjustment_set_value (adj, value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue