diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-08-18 13:20:48 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-08-18 13:20:48 +0100 |
commit | 1e8fb454f4cb0762c60097a031fc5e833a9039d3 (patch) | |
tree | a02bef9f491c5c7630a46db00c5ba53da9ba6cd5 | |
parent | fa1f708662f7e9d08796f4c515339bf8ce2831e8 (diff) | |
download | ayatana-indicator-sound-1e8fb454f4cb0762c60097a031fc5e833a9039d3.tar.gz ayatana-indicator-sound-1e8fb454f4cb0762c60097a031fc5e833a9039d3.tar.bz2 ayatana-indicator-sound-1e8fb454f4cb0762c60097a031fc5e833a9039d3.zip |
bug fixed where the menu is dismissed on the metadata-widget key event
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | src/metadata-widget.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index adb9564..f1a9b63 100644 --- a/configure.ac +++ b/configure.ac @@ -1,10 +1,10 @@ -AC_INIT(indicator-sound, 0.7.5, conor.curran@canonical.com) +AC_INIT(indicator-sound, 0.7.6, conor.curran@canonical.com) AC_PREREQ(2.53) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(indicator-sound, 0.7.5) +AM_INIT_AUTOMAKE(indicator-sound, 0.7.6) AM_MAINTAINER_MODE diff --git a/src/metadata-widget.c b/src/metadata-widget.c index ee9957f..d21c10d 100644 --- a/src/metadata-widget.c +++ b/src/metadata-widget.c @@ -665,7 +665,7 @@ metadata_widget_button_release_event (GtkWidget *menuitem, gtk_clipboard_store (board); g_free(contents); } - return TRUE; + return FALSE; } static void |