about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorTodd Fries <todd@fries.net>2011-01-12 18:03:51 +0000
committerTodd Fries <todd@fries.net>2011-01-12 18:03:51 +0000
commitcbe85217c4706f36cef8e27f2d9c89294b843a42 (patch)
tree862e98fc2f743ac6d63ef8de78c8f19f989c0c21
parent431fd3b8df0c7a09bed5264d1a5b2cfe12688d18 (diff)
downloadxombrero-cbe85217c4706f36cef8e27f2d9c89294b843a42.tar.gz
lets do the notebook settings once instead of per new tab
-rw-r--r--xxxterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xxxterm.c b/xxxterm.c
index 584303f..a947209 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -5645,7 +5645,6 @@ create_new_tab(char *title, struct undo *u, int focus)
 	bb = create_button("Close", GTK_STOCK_CLOSE, 1);
 	gtk_widget_set_size_request(t->label, 100, 0);
 	gtk_widget_set_size_request(b, 130, 0);
-	gtk_notebook_set_homogeneous_tabs(notebook, TRUE);
 
 	gtk_box_pack_start(GTK_BOX(b), bb, FALSE, FALSE, 0);
 	gtk_box_pack_start(GTK_BOX(b), t->label, FALSE, FALSE, 0);
@@ -5942,6 +5941,7 @@ create_canvas(void)
 	}
 	gtk_notebook_set_show_border(notebook, FALSE);
 	gtk_notebook_set_scrollable(notebook, TRUE);
+	gtk_notebook_set_homogeneous_tabs(notebook, TRUE);
 	gtk_widget_set_can_focus(GTK_WIDGET(notebook), FALSE);
 
 	abtn = gtk_button_new();
ytes.subx?h=hlt&id=e0bceffe08e06a30e771efe986f1f4f7c717dc95'>e0bceffe ^
71418907 ^
e0bceffe ^





a148b23a ^
71418907 ^
a148b23a ^
71418907 ^
a148b23a ^













71418907 ^
a148b23a ^











71418907 ^
a148b23a ^








1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157