summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1646813)
raw | patch | inline | side by side (parent: 1646813)
author | buliabyak <buliabyak@users.sourceforge.net> | |
Sun, 13 Jul 2008 21:32:03 +0000 (21:32 +0000) | ||
committer | buliabyak <buliabyak@users.sourceforge.net> | |
Sun, 13 Jul 2008 21:32:03 +0000 (21:32 +0000) |
src/widgets/toolbox.cpp | patch | blob | history |
index 8a909ce97442735b3856e94bcc88d3d7380f70a4..2951298a53f89ba665c7b9caf4774f4c0414cb3c 100644 (file)
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -3878,7 +3878,7 @@ static void sp_ddc_trace_background_changed( GtkToggleAction *act, GObject* tbl
static void sp_ddc_tilt_state_changed( GtkToggleAction *act, GObject* tbl )
{
- GtkAction * calligraphy_angle = static_cast<GtkAction *> (g_object_get_data(tbl,"angle"));
+ GtkAction * calligraphy_angle = static_cast<GtkAction *> (g_object_get_data(tbl,"angle_action"));
prefs_set_int_attribute( "tools.calligraphic", "usetilt", gtk_toggle_action_get_active( act ) ? 1 : 0 );
update_presets_list(tbl);
if (calligraphy_angle )
@@ -4054,6 +4054,7 @@ static void sp_calligraphy_toolbox_prep(SPDesktop *desktop, GtkActionGroup* main
labels, values, G_N_ELEMENTS(labels),
sp_ddc_angle_value_changed, 1, 0 );
gtk_action_group_add_action( mainActions, GTK_ACTION(eact) );
+ g_object_set_data( holder, "angle_action", eact );
gtk_action_set_sensitive( GTK_ACTION(eact), TRUE );
calligraphy_angle = eact;
}