Commit fe4a517f authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* If labels are nil, then it shouldn't disable the entire preference panel.

  fixes #428 more permenantly. the cause was a missing rt-priority desc.
parent 43b80318
......@@ -2,7 +2,7 @@
* prefs.m: MacOS X plugin for vlc
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: prefs.m,v 1.16 2003/02/23 05:53:53 jlj Exp $
* $Id: prefs.m,v 1.17 2003/03/06 10:15:37 hartman Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
*
......@@ -236,8 +236,11 @@
[o_text_field setBordered: NO]; \
[o_text_field setEditable: NO]; \
[o_text_field setSelectable: NO]; \
if ( label ) \
{ \
[o_text_field setStringValue: \
[NSApp localizedString: label]]; \
} \
[o_text_field sizeToFit]; \
[o_view addSubview: [o_text_field autorelease]]; \
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment