diff -r a3484f00a5f0 -r 3a1c6678fa23 gui/edit_win.cc --- a/gui/edit_win.cc Tue Jun 14 13:55:28 2005 +0000 +++ b/gui/edit_win.cc Tue Jun 14 15:58:12 2005 +0000 @@ -68,6 +68,20 @@ ); table.attach(*buttons[MOVE],0,1,1,2); + //New edge button + buttons[ERASER]=new Gtk::RadioButton("Erase Item"); + buttons[ERASER]->set_mode(false); + buttons[ERASER]->set_group(group); + buttons[ERASER]->signal_clicked().connect + ( + sigc::bind + ( + sigc::mem_fun(*this, &EditWin::makeEditorialToolChanged), + 3 + ) + ); + table.attach(*buttons[ERASER],1,2,1,2); + add(table); show_all_children();