@@ -283,7 +283,7 @@ static GtkWidget* create_action_bar(GtkNotebook *notebook)
283
283
284
284
/*** Read */
285
285
286
- Closure -> readButton = wid = create_button (_ ("button|Read" ), "read" , scale );
286
+ Closure -> readButton = wid = create_button (_ ("button|Read" ), "read-symbolic " , scale );
287
287
g_signal_connect (G_OBJECT (wid ), "clicked" , G_CALLBACK (action_cb ), (gpointer )ACTION_READ );
288
288
gtk_box_pack_start (GTK_BOX (vbox ), wid , FALSE, FALSE, 0 );
289
289
GuiAttachTooltip (wid , _ ("tooltip|Read Image" ),
@@ -309,23 +309,23 @@ static GtkWidget* create_action_bar(GtkNotebook *notebook)
309
309
310
310
/*** Scan */
311
311
312
- Closure -> scanButton = wid = create_button (_ ("button|Scan" ), "scan" , scale );
312
+ Closure -> scanButton = wid = create_button (_ ("button|Scan" ), "scan-symbolic " , scale );
313
313
g_signal_connect (G_OBJECT (wid ), "clicked" , G_CALLBACK (action_cb ), (gpointer )ACTION_SCAN );
314
314
gtk_box_pack_start (GTK_BOX (vbox ), wid , FALSE, FALSE, 0 );
315
315
GuiAttachTooltip (wid , _ ("tooltip|Scan medium" ),
316
316
_ ("Scans medium for unreadable sectors." ));
317
317
318
318
/*** Fix */
319
319
320
- Closure -> fixButton = wid = create_button (_ ("button|Fix" ), "fix" , scale );
320
+ Closure -> fixButton = wid = create_button (_ ("button|Fix" ), "fix-symbolic " , scale );
321
321
g_signal_connect (G_OBJECT (wid ), "clicked" , G_CALLBACK (action_cb ), (gpointer )ACTION_FIX );
322
322
gtk_box_pack_start (GTK_BOX (vbox ), wid , FALSE, FALSE, 0 );
323
323
GuiAttachTooltip (wid , _ ("tooltip|Repair image" ),
324
324
_ ("Repairs an image. Requires an image file and error correction data." ));
325
325
326
326
/*** Verify */
327
327
328
- Closure -> testButton = wid = create_button (_ ("button|Verify" ), "verify" , scale );
328
+ Closure -> testButton = wid = create_button (_ ("button|Verify" ), "verify-symbolic " , scale );
329
329
g_signal_connect (G_OBJECT (wid ), "clicked" , G_CALLBACK (action_cb ), (gpointer )ACTION_VERIFY );
330
330
gtk_box_pack_start (GTK_BOX (vbox ), wid , FALSE, FALSE, 0 );
331
331
GuiAttachTooltip (wid , _ ("tooltip|Consistency check" ),
0 commit comments