Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
3101315b
Commit
3101315b
authored
Nov 15, 2000
by
Jeremy White
Committed by
Alexandre Julliard
Nov 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow desktop=N in the [x11drv] section of .winerc, instead of
defaulting to desktop=640x480.
parent
914406f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
x11drv_main.c
dlls/x11drv/x11drv_main.c
+5
-1
No files found.
dlls/x11drv/x11drv_main.c
View file @
3101315b
...
...
@@ -125,7 +125,11 @@ static void setup_options(void)
count
=
sizeof
(
buffer
);
if
(
!
RegQueryValueExA
(
hkey
,
"Desktop"
,
0
,
&
type
,
buffer
,
&
count
))
Options
.
desktopGeometry
=
strdup
(
buffer
);
/* Imperfect validation: If Desktop=N, then we don't turn on
** the --desktop option. We should really validate for a correct
** sizing entry */
if
(
!
IS_OPTION_FALSE
(
buffer
[
0
]))
Options
.
desktopGeometry
=
strdup
(
buffer
);
}
if
(
Options
.
managed
)
...
...
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