diff --git a/Projects/CodeBlocks/SleepyHead.depend b/Projects/CodeBlocks/SleepyHead.depend index 0dbb3144..9fb3ff82 100644 --- a/Projects/CodeBlocks/SleepyHead.depend +++ b/Projects/CodeBlocks/SleepyHead.depend @@ -8304,7 +8304,7 @@ -1307590941 /home/mark/projects/git/sleepyhead/src/version.h +1307593095 /home/mark/projects/git/sleepyhead/src/version.h 1307418393 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h "machine.h" @@ -8341,7 +8341,7 @@ "sleeplib/profiles.h" "sleeplib/machine_loader.h" -1307590711 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp +1307590941 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp diff --git a/src/graphs/graph.cpp b/src/graphs/graph.cpp index 2848b246..da66df0f 100644 --- a/src/graphs/graph.cpp +++ b/src/graphs/graph.cpp @@ -461,7 +461,7 @@ void gGraphWindow::OnMouseLeftDown(wxMouseEvent &event) if (hot1.Contains(x,y)) { m_mouseLDown=true; - } else if (foobar && (y>(m_scrY-GetBottomMargin())) && (y<(m_scrY-GetBottomMargin())+20)) { + } else if (foobar && (y>(m_scrY-GetBottomMargin())) && (y<(m_scrY-GetBottomMargin())+20) ) { double rx=RealMaxX()-RealMinX(); double qx=double(width)/rx; double minx=MinX()-RealMinX(); @@ -527,11 +527,10 @@ void gGraphWindow::OnMouseLeftRelease(wxMouseEvent &event) int x1=m_mouseRBrect.x; int x2=x1+m_mouseRBrect.width; - m_mouseLDown=false; m_mouseRBrect=wxRect(0, 0, 0, 0); - if (hot1.Contains(x,y) && !m_drag_foobar) { + if (m_mouseLDown && !m_drag_foobar) { //hot1.Contains(x,y) && int t1=MIN(x1,x2); int t2=MAX(x1,x2); @@ -556,6 +555,7 @@ void gGraphWindow::OnMouseLeftRelease(wxMouseEvent &event) } m_drag_foobar=false; + m_mouseLDown=false; event.Skip(); } diff --git a/src/version.h b/src/version.h index 1fed0212..e2ac50b5 100644 --- a/src/version.h +++ b/src/version.h @@ -16,14 +16,14 @@ namespace AutoVersion{ //Standard Version Type static const long MAJOR = 0; static const long MINOR = 7; - static const long BUILD = 3989; - static const long REVISION = 4935; + static const long BUILD = 3995; + static const long REVISION = 4967; //Miscellaneous Version Types - static const long BUILDS_COUNT = 2169; - #define RC_FILEVERSION 0,7,3989,4935 - #define RC_FILEVERSION_STRING "0, 7, 3989, 4935\0" - static const char FULLVERSION_STRING[] = "0.7.3989.4935"; + static const long BUILDS_COUNT = 2183; + #define RC_FILEVERSION 0,7,3995,4967 + #define RC_FILEVERSION_STRING "0, 7, 3995, 4967\0" + static const char FULLVERSION_STRING[] = "0.7.3995.4967"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 0;