From: <pst...@us...> - 2013-04-07 06:02:18
|
Revision: 1006 http://sourceforge.net/p/jazzplusplus/code/1006 Author: pstieber Date: 2013-04-07 06:02:14 +0000 (Sun, 07 Apr 2013) Log Message: ----------- Fixed panel width. Modified Paths: -------------- trunk/jazz/src/Rhythm.cpp Modified: trunk/jazz/src/Rhythm.cpp =================================================================== --- trunk/jazz/src/Rhythm.cpp 2013-04-07 05:59:57 UTC (rev 1005) +++ trunk/jazz/src/Rhythm.cpp 2013-04-07 06:02:14 UTC (rev 1006) @@ -1411,7 +1411,7 @@ GetClientSize(&Width, &Height); mpInstrumentPanel = - new wxPanel(this, wxID_ANY, wxPoint(x, y), wxSize(Width / 2, Height / 2)); + new wxPanel(this, wxID_ANY, wxPoint(x, y), wxSize(Width, Height / 2)); mpStepsPerCountSlider = new wxSlider( mpInstrumentPanel, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |