spek

Acoustic spectrum analyser
git clone http://git.hanabi.in/repos/spek.git
Log | Files | Refs | README

commit 41cbb3f883866bd0ac940e5361fce3a59889a269
parent 117e24098760f9cc595cb1c889bb807e916caa34
Author: Alexander Kojevnikov <alexander@kojevnikov.com>
Date:   Fri, 31 Aug 2012 20:38:42 -0700

Set window size (fixes #6)

Diffstat:
Msrc/spek-window.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/spek-window.cc b/src/spek-window.cc @@ -70,7 +70,7 @@ private: }; SpekWindow::SpekWindow(const wxString& path) : - path(path), wxFrame(NULL, -1, wxEmptyString) + path(path), wxFrame(NULL, -1, wxEmptyString, wxDefaultPosition, wxSize(640, 480)) { this->description = _("Spek - Acoustic Spectrum Analyser"); SetTitle(this->description);