parent
3e3ccdca8d
commit
d45e2c4c2e
|
@ -213,6 +213,7 @@ add_resources(
|
|||
icons/graphics-window/construction.png
|
||||
icons/graphics-window/equal.png
|
||||
icons/graphics-window/extrude.png
|
||||
icons/graphics-window/helix.png
|
||||
icons/graphics-window/horiz.png
|
||||
icons/graphics-window/image.png
|
||||
icons/graphics-window/in3d.png
|
||||
|
@ -227,6 +228,7 @@ add_resources(
|
|||
icons/graphics-window/point.png
|
||||
icons/graphics-window/rectangle.png
|
||||
icons/graphics-window/ref.png
|
||||
icons/graphics-window/revolve.png
|
||||
icons/graphics-window/same-orientation.png
|
||||
icons/graphics-window/sketch-in-3d.png
|
||||
icons/graphics-window/sketch-in-plane.png
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 664 B |
Binary file not shown.
After Width: | Height: | Size: 680 B |
|
@ -68,6 +68,10 @@ static ToolIcon Toolbar[] = {
|
|||
N_("New group extruding active sketch"), {} },
|
||||
{ "lathe", Command::GROUP_LATHE,
|
||||
N_("New group rotating active sketch"), {} },
|
||||
{ "helix", Command::GROUP_HELIX,
|
||||
N_("New group helix from active sketch"), {} },
|
||||
{ "revolve", Command::GROUP_REVOLVE,
|
||||
N_("New group revolve active sketch"), {} },
|
||||
{ "step-rotate", Command::GROUP_ROT,
|
||||
N_("New group step and repeat rotating"), {} },
|
||||
{ "step-translate", Command::GROUP_TRANS,
|
||||
|
@ -153,7 +157,7 @@ bool GraphicsWindow::ToolbarDrawOrHitTest(int mx, int my, UiCanvas *canvas,
|
|||
|
||||
// When changing these values, also change the asReference drawing code in drawentity.cpp.
|
||||
int fudge = 8;
|
||||
int h = 34*16 + 3*16 + fudge;
|
||||
int h = 36*16 + 3*16 + fudge;
|
||||
int aleft = 0, aright = 66, atop = y+16+fudge/2, abot = y+16-h;
|
||||
|
||||
bool withinToolbar =
|
||||
|
|
Loading…
Reference in New Issue