OSDN Git Service

LinGui: When translating legacy presets, vquality 0 means RF 0, not 0%
[handbrake-jp/handbrake-jp-git.git] / gtk / src / presets.c
index b59efca..88e3e4e 100644 (file)
@@ -2528,7 +2528,7 @@ import_xlat_preset(GValue *dict)
        const GValue *gval;
 
        vquality = ghb_value_double(preset_dict_get_value(dict, "VideoQualitySlider"));
-       if (vquality < 1.0)
+       if (vquality > 0.0 && vquality < 1.0)
        {
                gint vcodec;