| 165 |
165 |
| 166 button = gtk_button_new(); |
166 button = gtk_button_new(); |
| 167 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
167 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
| 168 |
168 |
| 169 /* don't allow focus on the close button */ |
169 /* don't allow focus on the close button */ |
| 170 gtk_button_set_focus_on_click(GTK_BUTTON(button), FALSE); |
170 gtk_widget_set_focus_on_click(button, FALSE); |
| 171 |
171 |
| 172 gtk_widget_show(image); |
172 gtk_widget_show(image); |
| 173 |
173 |
| 174 gtk_container_add(GTK_CONTAINER(button), image); |
174 gtk_container_add(GTK_CONTAINER(button), image); |
| 175 |
175 |