summaryrefslogtreecommitdiffstats
path: root/Gui/app.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-27 23:11:49 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-27 23:11:49 +0000
commitbb208729b33c8e8f8f00967fc722071c689dc873 (patch)
treece85abb8004a5ace9ddd68058e5dec37118cd88f /Gui/app.c
parent92b1243b342543da0e0a9d6f2a2ec4920770976c (diff)
downloadmpv-bb208729b33c8e8f8f00967fc722071c689dc873.tar.bz2
mpv-bb208729b33c8e8f8f00967fc722071c689dc873.tar.xz
10l fix in item disabling (vagymi)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8301 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/app.c')
-rw-r--r--Gui/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gui/app.c b/Gui/app.c
index 346a93131a..9569c76ffe 100644
--- a/Gui/app.c
+++ b/Gui/app.c
@@ -189,6 +189,6 @@ void btnSet( int event,int set )
{
int j;
for ( j=0;j<appMPlayer.NumberOfItems + 1;j++ )
- if ( appMPlayer.Items[j].msg == event ) appMPlayer.Items[j].disabled=set;
+ if ( appMPlayer.Items[j].msg == event ) appMPlayer.Items[j].pressed=set;
}
\ No newline at end of file