Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Alecaddd/sequeler
Browse files Browse the repository at this point in the history
  • Loading branch information
Alecaddd committed Apr 12, 2020
2 parents 470d4a1 + 84cc4ba commit 93bef0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Widgets/QueryParamsDialog.vala
Expand Up @@ -192,7 +192,7 @@ public class Sequeler.Widgets.QueryParamsDialog : Gtk.Dialog {
} else if (holder_g_type == Type.FLOAT) {
// TODO: replace this with the following once we upgrade to a newer valac
// parse_result = float.try_parse (text, out parsed_value);
parsed_value = float.parse (text);
parsed_value = double.parse (text);
} else if (holder_g_type == Type.DOUBLE) {
// TODO: replace this with the following once we upgrade to a newer valac
// parse_result = double.try_parse (text, out parsed_value);
Expand Down

0 comments on commit 93bef0d

Please sign in to comment.