Changeset fb700e8f478244ce694a4955f61ca4514418d74a
- Timestamp:
- 02/11/08 06:46:29
(7 months ago)
- Author:
- Ilkka Ollakka <ileoo@videolan.org>
- git-committer:
- Ilkka Ollakka <ileoo@videolan.org> 1202708789 +0000
- git-parent:
[78c94529d1006fb64dfbf1629575f1146e1574f6]
- git-author:
- Ilkka Ollakka <ileoo@videolan.org> 1202708789 +0000
- Message:
show default info in playlist if i_showflag is too low to show anything
at all
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd1f0a4f |
rfb700e8 |
|
| 71 | 71 | QSettings settings( "vlc", "vlc-qt-interface" ); |
|---|
| 72 | 72 | i_showflags = settings.value( "qt-pl-showflags" ).toInt(); |
|---|
| | 73 | if( i_showflags < 1) |
|---|
| | 74 | i_showflags = 39; //reasonable default to show something; |
|---|
| 73 | 75 | updateColumnHeaders(); |
|---|
| 74 | 76 | } |
|---|