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
1ce334be
Commit
1ce334be
authored
Oct 19, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Maemo: enable fullscreen by default (good res, but still small screen)
parent
b8d39d75
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
src/libvlc-module.c
src/libvlc-module.c
+6
-1
No files found.
src/libvlc-module.c
View file @
1ce334be
...
...
@@ -1593,7 +1593,12 @@ vlc_module_begin ()
change_safe
()
add_bool
(
"grayscale"
,
0
,
NULL
,
GRAYSCALE_TEXT
,
GRAYSCALE_LONGTEXT
,
true
)
add_bool
(
"fullscreen"
,
0
,
NULL
,
FULLSCREEN_TEXT
,
#if defined (HAVE_MAEMO)
# define FULLSCREEN_DEFAULT true
#else
# define FULLSCREEN_DEFAULT false
#endif
add_bool
(
"fullscreen"
,
FULLSCREEN_DEFAULT
,
NULL
,
FULLSCREEN_TEXT
,
FULLSCREEN_LONGTEXT
,
false
)
change_short
(
'f'
)
change_safe
()
...
...
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