Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
8af1d49f
Commit
8af1d49f
authored
Aug 19, 2012
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: improve playlist table column resizing behaviour
parent
1995b300
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
10 deletions
+7
-10
extras/package/macosx/Resources/English.lproj/MainMenu.xib
extras/package/macosx/Resources/English.lproj/MainMenu.xib
+5
-5
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+2
-5
No files found.
extras/package/macosx/Resources/English.lproj/MainMenu.xib
View file @
8af1d49f
...
@@ -21,15 +21,15 @@
...
@@ -21,15 +21,15 @@
</object>
</object>
<object
class=
"NSMutableArray"
key=
"IBDocument.EditedObjectIDs"
>
<object
class=
"NSMutableArray"
key=
"IBDocument.EditedObjectIDs"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<integer
value=
"4948"
/>
<integer
value=
"915"
/>
<integer
value=
"915"
/>
<integer
value=
"5160"
/>
<integer
value=
"2730"
/>
<integer
value=
"21"
/>
<integer
value=
"2770"
/>
<integer
value=
"2770"
/>
<integer
value=
"4948"
/>
<integer
value=
"4845"
/>
<integer
value=
"4845"
/>
<integer
value=
"4722"
/>
<integer
value=
"4722"
/>
<integer
value=
"5160"
/>
<integer
value=
"4850"
/>
<integer
value=
"4850"
/>
<integer
value=
"4372"
/>
<integer
value=
"2730"
/>
<integer
value=
"1617"
/>
<integer
value=
"1617"
/>
</object>
</object>
<object
class=
"NSArray"
key=
"IBDocument.PluginDependencies"
>
<object
class=
"NSArray"
key=
"IBDocument.PluginDependencies"
>
...
@@ -451,7 +451,7 @@
...
@@ -451,7 +451,7 @@
<reference
key=
"NSDelegate"
/>
<reference
key=
"NSDelegate"
/>
<reference
key=
"NSDataSource"
/>
<reference
key=
"NSDataSource"
/>
<int
key=
"NSGridStyleMask"
>
1
</int>
<int
key=
"NSGridStyleMask"
>
1
</int>
<int
key=
"NSColumnAutoresizingStyle"
>
4
</int>
<int
key=
"NSColumnAutoresizingStyle"
>
3
</int>
<int
key=
"NSDraggingSourceMaskForLocal"
>
15
</int>
<int
key=
"NSDraggingSourceMaskForLocal"
>
15
</int>
<int
key=
"NSDraggingSourceMaskForNonLocal"
>
0
</int>
<int
key=
"NSDraggingSourceMaskForNonLocal"
>
0
</int>
<bool
key=
"NSAllowsTypeSelect"
>
YES
</bool>
<bool
key=
"NSAllowsTypeSelect"
>
YES
</bool>
...
...
modules/gui/macosx/playlist.m
View file @
8af1d49f
...
@@ -1500,13 +1500,10 @@
...
@@ -1500,13 +1500,10 @@
if
([
o_column
isEqualToString
:
TRACKNUM_COLUMN
])
if
([
o_column
isEqualToString
:
TRACKNUM_COLUMN
])
{
{
[
o_work_tc
setMaxWidth
:
20
.];
[
o_work_tc
setWidth
:
20
.];
[
o_work_tc
setResizingMask
:
NSTableColumnNoResizing
];
[[
o_work_tc
headerCell
]
setStringValue
:
@"#"
];
[[
o_work_tc
headerCell
]
setStringValue
:
@"#"
];
}
}
else
if
([
o_column
isEqualToString
:
TITLE_COLUMN
])
{
[
o_work_tc
setResizingMask
:
NSTableColumnAutoresizingMask
|
NSTableColumnUserResizingMask
];
}
[
o_outline_view
addTableColumn
:
o_work_tc
];
[
o_outline_view
addTableColumn
:
o_work_tc
];
[
o_work_tc
release
];
[
o_work_tc
release
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment