# HG changeset patch # User Santeri Piippo # Date 1373932031 -10800 # Node ID 629e3142d02d260e511c4dfdd092429b55d3c2ae # Parent beef61ce962a9324e57d8df9b9ee3e5aba640ce2 change camera to top if switching to draw mode in free camera diff -r beef61ce962a -r 629e3142d02d changelog.txt --- a/changelog.txt Tue Jul 16 02:45:13 2013 +0300 +++ b/changelog.txt Tue Jul 16 02:47:11 2013 +0300 @@ -5,6 +5,7 @@ of currently open files. - Added close, close all and save all actions. - Color icon border now reflects the color's edge color. +- Changing to draw mode while in free camera now causes the camera to be changed to top. ================================================= == Changes in version 0.2-alpha diff -r beef61ce962a -r 629e3142d02d src/gldraw.cpp --- a/src/gldraw.cpp Tue Jul 16 02:45:13 2013 +0300 +++ b/src/gldraw.cpp Tue Jul 16 02:47:11 2013 +0300 @@ -1203,8 +1203,9 @@ break; case Draw: + // Cannot draw into the free camera - use top instead. if (m_camera == Free) - return; // Cannot draw with the free camera + setCamera (Top); // Disable the context menu - we need the right mouse button // for removing vertices.