From 12876a2268b54c0cc2f381b5066a3bbc8ca623e8 Mon Sep 17 00:00:00 2001 From: Carlos Lopez Date: Sat, 25 Jul 2009 11:18:48 +0200 Subject: [PATCH] Do not perform action when ALT-draging first keyframe --- synfig-studio/trunk/src/gtkmm/widget_keyframe_list.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/synfig-studio/trunk/src/gtkmm/widget_keyframe_list.cpp b/synfig-studio/trunk/src/gtkmm/widget_keyframe_list.cpp index 4c83d14..ace2b98 100644 --- a/synfig-studio/trunk/src/gtkmm/widget_keyframe_list.cpp +++ b/synfig-studio/trunk/src/gtkmm/widget_keyframe_list.cpp @@ -193,8 +193,12 @@ Widget_Keyframe_List::perform_move_kf(bool delta=false) kf_list_->find_prev_next(selected_kf_time, prev, next); // Not possible to set delta to the first keyframe // perform normal movement - if (prev==Time::begin()) delta = false; - + // As suggested by Zelgadis it is better to not perform anything. + if (prev==Time::begin() && delta==true) + { + synfig::info(_("Not possible to ALT-drag the first keyframe")); + return false; + } if(!delta) { synfigapp::Action::Handle action(synfigapp::Action::create("KeyframeSet")); -- 2.7.4