Root/gtkguitune/patches/001-swap-left-and-right.patch

1diff --git a/guitune.cc b/guitune.cc
2index ba41cad..5f10b31 100644
3--- a/guitune.cc
4+++ b/guitune.cc
5@@ -362,18 +362,18 @@ MainWidget::MainWidget()
6                                      0 // page size
7                                   );
8 
9- attach( *oszi, 0, 1, 0, 5 );
10+ attach( *oszi, 2, 3, 0, 5 );
11 
12     attach( *manage( new Gtk::Label("Freq:") ),
13- 1, 2, 1, 2,
14+ 0, 1, 1, 2,
15         Gtk::AttachOptions(), Gtk::AttachOptions() );
16- attach( *freqview, 2, 3, 1, 2,
17+ attach( *freqview, 1, 2, 1, 2,
18         Gtk::FILL, Gtk::AttachOptions() );
19 
20     attach( *manage( new Gtk::Label("Tune:") ),
21- 1, 2, 2, 3,
22+ 0, 1, 2, 3,
23         Gtk::AttachOptions(), Gtk::AttachOptions() );
24- attach( *nfreqview, 2, 3, 2, 3,
25+ attach( *nfreqview, 1, 2, 2, 3,
26         Gtk::FILL, Gtk::AttachOptions() );
27 
28     Gtk::Frame *adj_frame = new Gtk::Frame("Adjust:");
29@@ -418,11 +418,11 @@ MainWidget::MainWidget()
30                2, 3, 4, 5 );
31 
32     attach( *manage( adj_frame ),
33- 1, 3, 3, 4,
34+ 0, 2, 3, 4,
35         Gtk::FILL, Gtk::FILL );
36 
37     attach( *manage( new Gtk::Label( "" ) ),
38- 1, 3, 4, 5, Gtk::AttachOptions() );
39+ 0, 2, 4, 5, Gtk::AttachOptions() );
40 
41     attach( *logview,
42         0, 3, 5, 6,
43

Archive Download this file



interactive