diff options
| author | Sean Davis <smd.seandavis@gmail.com> | 2016-08-29 20:53:36 -0400 |
|---|---|---|
| committer | Sean Davis <smd.seandavis@gmail.com> | 2016-08-29 20:53:36 -0400 |
| commit | 63a9f5d5fa16c598d888ee017714dd0b8548bab6 (patch) | |
| tree | e18f4b5070843d0fc1776b0bf349207f9bb3189d | |
| parent | 7d46462b14ea041cc5ccb9239a40774c0e6c2d02 (diff) | |
| download | exo-63a9f5d5fa16c598d888ee017714dd0b8548bab6.tar.gz | |
Fix vertical alignment of options in preferred applications
| -rw-r--r-- | exo-helper/exo-helper-chooser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exo-helper/exo-helper-chooser.c b/exo-helper/exo-helper-chooser.c index 19f9ffb..fadf89b 100644 --- a/exo-helper/exo-helper-chooser.c +++ b/exo-helper/exo-helper-chooser.c @@ -159,7 +159,7 @@ exo_helper_chooser_init (ExoHelperChooser *chooser) gtk_box_pack_start (GTK_BOX (hbox), chooser->image, FALSE, FALSE, 0); gtk_widget_show (chooser->image); - chooser->label = g_object_new (GTK_TYPE_LABEL, "xalign", 0.0f, "yalign", 0.0f, NULL); + chooser->label = g_object_new (GTK_TYPE_LABEL, "xalign", 0.0f, "yalign", 0.5f, NULL); gtk_box_pack_start (GTK_BOX (hbox), chooser->label, TRUE, TRUE, 0); gtk_widget_show (chooser->label); |