~and471/+junk/do-with-docky

« back to all changes in this revision

Viewing changes to Do/src/Do.UI/KeybindingTreeView.cs

  • Committer: rugby471 at gmail
  • Date: 2010-10-15 16:08:38 UTC
  • Revision ID: rugby471@gmail.com-20101015160838-z9m3utbf7bxzb5ty
reverted to before docky removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
                                string defaultVal = store.GetValue (iter, (int) Column.DefaultKeybinding).ToString ();
140
140
                                defaultVal = (string.IsNullOrEmpty (defaultVal)) ? Catalog.GetString ("Disabled") : defaultVal;
141
141
                                store.SetValue (iter, (int) Column.BoundKeyString, defaultVal);
142
 
                        } catch (Exception) {
 
142
                        } catch (Exception e) {
143
143
                                store.SetValue (iter, (int) Column.BoundKeyString, Catalog.GetString ("Disabled"));
144
144
                        }
145
145