diff options
Diffstat (limited to 'mixgtk')
-rw-r--r-- | mixgtk/mixgtk.glade | 13 | ||||
-rw-r--r-- | mixgtk/mixgtk_mixal.c | 4 |
2 files changed, 15 insertions, 2 deletions
diff --git a/mixgtk/mixgtk.glade b/mixgtk/mixgtk.glade index e50a68b..78b2d46 100644 --- a/mixgtk/mixgtk.glade +++ b/mixgtk/mixgtk.glade @@ -726,6 +726,19 @@ </child> <child> + <widget class="GtkSeparatorToolItem" id="separatortoolitem13"> + <property name="visible">True</property> + <property name="draw">True</property> + <property name="visible_horizontal">True</property> + <property name="visible_vertical">True</property> + </widget> + <packing> + <property name="expand">False</property> + <property name="homogeneous">False</property> + </packing> + </child> + + <child> <widget class="GtkToolButton" id="run_button"> <property name="visible">True</property> <property name="tooltip" translatable="yes">Run</property> diff --git a/mixgtk/mixgtk_mixal.c b/mixgtk/mixgtk_mixal.c index 84664b9..120abab 100644 --- a/mixgtk/mixgtk_mixal.c +++ b/mixgtk/mixgtk_mixal.c @@ -121,8 +121,8 @@ insert_symbol_ (gpointer symbol, gpointer value, gpointer data) mix_word_t w = (mix_word_t)GPOINTER_TO_INT (value); g_snprintf (DEC, DEC_SIZE, "%s%ld", - mix_word_is_negative (w)? "-" : "+", - mix_word_magnitude (w)); + mix_word_is_negative (w)? "-" : "+", + mix_word_magnitude (w)); mix_word_print_to_buffer (w, WORD); gtk_list_store_append (symbols_store_, &iter); |