Skip to content

Commit 84cc4ba

Browse files
authored
Update QueryParamsDialog.vala
1 parent 93c7afb commit 84cc4ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Widgets/QueryParamsDialog.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public class Sequeler.Widgets.QueryParamsDialog : Gtk.Dialog {
192192
} else if (holder_g_type == Type.FLOAT) {
193193
// TODO: replace this with the following once we upgrade to a newer valac
194194
// parse_result = float.try_parse (text, out parsed_value);
195-
parsed_value = float.parse (text);
195+
parsed_value = double.parse (text);
196196
} else if (holder_g_type == Type.DOUBLE) {
197197
// TODO: replace this with the following once we upgrade to a newer valac
198198
// parse_result = double.try_parse (text, out parsed_value);

0 commit comments

Comments
 (0)