You need to sign in or sign up before continuing.
Unverified Commit ceecf1a3 authored by Милош Павловић's avatar Милош Павловић Committed by GitHub

Update option.c

add form switch
parent 770e0759
......@@ -876,6 +876,8 @@ add_field (const gchar * option_name, const gchar * value, gpointer data, GError
fld->type = YAD_FIELD_DATE;
else if (strcasecmp (fstr[1], "SCL") == 0)
fld->type = YAD_FIELD_SCALE;
else if (strcasecmp (fstr[1], "SW") == 0)
fld->type = YAD_FIELD_SWITCH;
else if (strcasecmp (fstr[1], "BTN") == 0)
fld->type = YAD_FIELD_BUTTON;
else if (strcasecmp (fstr[1], "FBTN") == 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment