From 817d807c10d3227e166d34e31eda391e4e832357 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Sun, 12 Jun 2011 01:57:26 +0000 Subject: [PATCH] slim down mixer popup SVN revision: 60233 --- src/modules/mixer/e_mod_main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/mixer/e_mod_main.c b/src/modules/mixer/e_mod_main.c index 0fe26c707..3077f354e 100644 --- a/src/modules/mixer/e_mod_main.c +++ b/src/modules/mixer/e_mod_main.c @@ -590,14 +590,13 @@ _mixer_popup_new(E_Mixer_Instance *inst) else inst->ui.mute = NULL; - inst->ui.button = e_widget_button_add(evas, _("Controls"), NULL, + inst->ui.button = e_widget_button_add(evas, NULL, "preferences-system", _mixer_popup_cb_mixer, inst, NULL); e_widget_table_object_append(inst->ui.table, inst->ui.button, 0, 7, colspan, 1, 1, 1, 1, 0); e_widget_size_min_get(inst->ui.table, &mw, &mh); if (mh < 208) mh = 208; - if (mw < 68) mw = 68; e_widget_size_min_set(inst->ui.table, mw, mh); e_gadcon_popup_content_set(inst->popup, inst->ui.table);