From a012d56b0f230114de0e9b10e15023faa3c8a44c Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Thu, 10 Feb 2011 18:20:46 +0000 Subject: Sanitized ui sounds, removed button hover sound. --- src/ui/iconbutton.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/ui/iconbutton.cc') diff --git a/src/ui/iconbutton.cc b/src/ui/iconbutton.cc index 5f16e71..83c7aa7 100644 --- a/src/ui/iconbutton.cc +++ b/src/ui/iconbutton.cc @@ -105,7 +105,7 @@ bool IconButton::on_keypress(const int key, const unsigned int modifier) if (iconbutton_command.size()) { core::cmd() << iconbutton_command << std::endl; } - audio::play("ui/button"); + audio::play("ui/clicked"); emit(EventButtonClicked); } return true; @@ -121,8 +121,9 @@ bool IconButton::on_keyrelease(const int key, const unsigned int modifier) void IconButton::on_mouseover(const math::Vector2f &cursor) { - if (enabled()) - audio::play("ui/select"); + if (enabled()) { + //audio::play("ui/select"); + } } } -- cgit v1.2.3