diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-09-09 08:47:12 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-09-09 08:47:12 +0200 |
commit | 311a42d3c545f079f8a9428c52fbdc73731bdc37 (patch) | |
tree | d41dcf944b969257cd5ed62ccb7166305015a642 /debian/patches/0110-cap_always_settable.patch | |
parent | 4a8a70149879404d36ccd39c5983e3a9760af07e (diff) | |
parent | 16a4948c7243ab0e228780b3a2b9aea97900f32a (diff) |
Merge branch 'release/debian/1.0.14-13'debian/1.0.14-13
Diffstat (limited to 'debian/patches/0110-cap_always_settable.patch')
-rw-r--r-- | debian/patches/0110-cap_always_settable.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/patches/0110-cap_always_settable.patch b/debian/patches/0110-cap_always_settable.patch new file mode 100644 index 0000000..aef60f1 --- /dev/null +++ b/debian/patches/0110-cap_always_settable.patch @@ -0,0 +1,17 @@ +Author: <jblache@debian.org> +Description: Remove check for SANE_CAP_ALWAYS_SETTABLE; the flag is not part +of the standard and has been removed upstream in SANE 1.0.20. +Index: trunk/src/gtkglue.c +=================================================================== +--- trunk.orig/src/gtkglue.c ++++ trunk/src/gtkglue.c +@@ -1476,8 +1476,7 @@ gsg_set_sensitivity (GSGDialog * dialog, + || opt->type == SANE_TYPE_GROUP || !dialog->element[i].widget) + continue; + +- if (!(opt->cap & SANE_CAP_ALWAYS_SETTABLE)) +- gtk_widget_set_sensitive (dialog->element[i].widget, sensitive); ++ gtk_widget_set_sensitive (dialog->element[i].widget, sensitive); + } + } + |