--- a/src/gui_editactions.cpp Tue May 14 18:00:50 2013 +0300 +++ b/src/gui_editactions.cpp Tue May 14 18:32:34 2013 +0300 @@ -668,18 +668,22 @@ // ============================================================================= // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // ============================================================================= -MAKE_ACTION (ytruder, "Ytruder", "ytruder", "Extrude selected lines to a given plane", KEY (F4)) { +MAKE_ACTION (ytruder, "Ytruder", "ytruder", "Extrude selected lines to a given plane", (0)) { runYtruder (); } -MAKE_ACTION (rectifier, "Rectifier", "rectifier", "Optimizes quads into rect primitives.", KEY (F8)) { +MAKE_ACTION (rectifier, "Rectifier", "rectifier", "Optimizes quads into rect primitives.", (0)) { runRectifier (); } -MAKE_ACTION (intersector, "Intersector", "intersector", "Perform clipping between two input groups.", KEY (F5)) { +MAKE_ACTION (intersector, "Intersector", "intersector", "Perform clipping between two input groups.", (0)) { runIntersector (); } +MAKE_ACTION (coverer, "Coverer", "coverer", "Fill the space between two line shapes", (0)) { + runCoverer (); +} + // ========================================================================================================================================= MAKE_ACTION (replaceCoords, "Replace Coordinates", "replace-coords", "Find and replace coordinate values", CTRL (R)) { ReplaceCoordsDialog dlg;