summaryrefslogtreecommitdiffstats
path: root/source/dialogs
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-06-08 08:46:16 +0200
committerDave Davenport <qball@gmpclient.org>2017-06-08 08:46:16 +0200
commitad91f9a1241ade8cfaf9bb54a6df6cacffb77315 (patch)
treea26f06fda0f613a5c05104f8d923b3700024508e /source/dialogs
parent47c75186562b11216d7f36dd5bbf1e00bb775aea (diff)
[TextBox] Calculate yalign based on actual side, not estimated size.
Diffstat (limited to 'source/dialogs')
-rw-r--r--source/dialogs/drun.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/dialogs/drun.c b/source/dialogs/drun.c
index 2840a16c..a9d6bd5c 100644
--- a/source/dialogs/drun.c
+++ b/source/dialogs/drun.c
@@ -459,14 +459,14 @@ static gpointer drun_icon_fetch ( gpointer data )
// this should be fine running in another thread.
DRunModePrivateData *pd = (DRunModePrivateData *) data;
DRunModeEntry *dr;
- gsize i = 0;
- const gchar *themes[4];
+ gsize i = 0;
+ const gchar *themes[4];
if ( config.drun_icon_theme != NULL ) {
themes[i++] = config.drun_icon_theme;
}
themes[i++] = "Adwaita";
themes[i++] = "gnome";
- themes[i] = NULL;
+ themes[i] = NULL;
while ( ( dr = g_async_queue_pop ( pd->icon_fetch_queue ) ) != &( pd->quit_entry ) ) {
if ( dr->icon_name == NULL ) {