diff options
| author | Jabiertxo Arraiza Cenoz <jtx@jtx-desktop.markerlab.es> | 2017-12-05 12:48:06 +0000 |
|---|---|---|
| committer | Jabiertxo Arraiza Cenoz <jtx@jtx-desktop.markerlab.es> | 2017-12-05 12:48:06 +0000 |
| commit | c0a73d338290a417a79005a296d8975e12429fb2 (patch) | |
| tree | f9dd2c315a4e42fd615aa60e1562dc434c78af5b /src/ui/widget/scalar.cpp | |
| parent | Add fix to problem switching pen tool modes (diff) | |
| parent | Attemp to fix compile bug (diff) | |
| download | inkscape-c0a73d338290a417a79005a296d8975e12429fb2.tar.gz inkscape-c0a73d338290a417a79005a296d8975e12429fb2.zip | |
Merge branch 'master' into pen-tool-mode-fixes
Diffstat (limited to 'src/ui/widget/scalar.cpp')
| -rw-r--r-- | src/ui/widget/scalar.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ui/widget/scalar.cpp b/src/ui/widget/scalar.cpp index f8543a371..937bea697 100644 --- a/src/ui/widget/scalar.cpp +++ b/src/ui/widget/scalar.cpp @@ -14,7 +14,6 @@ # include <config.h> #endif - #include "scalar.h" #include "spinbutton.h" #include <gtkmm/scale.h> @@ -149,6 +148,11 @@ Glib::SignalProxy0<void> Scalar::signal_value_changed() return static_cast<SpinButton*>(_widget)->signal_value_changed(); } +Glib::SignalProxy1<bool, GdkEventButton*> Scalar::signal_button_release_event() +{ + return static_cast<SpinButton*>(_widget)->signal_button_release_event(); +} + } // namespace Widget } // namespace UI |
