Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
64dbec13
Commit
64dbec13
authored
May 06, 2009
by
Rein Klazes
Committed by
Alexandre Julliard
May 06, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecfg: Make the open file dialogs resizable.
parent
cdc82702
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
appdefaults.c
programs/winecfg/appdefaults.c
+2
-1
theme.c
programs/winecfg/theme.c
+1
-1
No files found.
programs/winecfg/appdefaults.c
View file @
64dbec13
...
...
@@ -319,7 +319,8 @@ static void on_add_app_click(HWND dialog)
OPENFILENAMEW
ofn
=
{
sizeof
(
OPENFILENAMEW
),
0
,
/*hInst*/
0
,
0
,
NULL
,
0
,
0
,
NULL
,
0
,
NULL
,
0
,
pathC
,
0
,
OFN_SHOWHELP
|
OFN_HIDEREADONLY
,
0
,
0
,
NULL
,
0
,
NULL
};
OFN_SHOWHELP
|
OFN_HIDEREADONLY
|
OFN_ENABLESIZING
,
0
,
0
,
NULL
,
0
,
NULL
};
LoadStringW
(
GetModuleHandle
(
NULL
),
IDS_SELECT_EXECUTABLE
,
selectExecutableStr
,
sizeof
(
selectExecutableStr
)
/
sizeof
(
selectExecutableStr
[
0
]));
...
...
programs/winecfg/theme.c
View file @
64dbec13
...
...
@@ -642,7 +642,7 @@ static void on_theme_install(HWND dialog)
ofn
.
nMaxFileTitle
=
sizeof
(
filetitle
)
/
sizeof
(
filetitle
[
0
]);
ofn
.
lpstrInitialDir
=
NULL
;
ofn
.
lpstrTitle
=
title
;
ofn
.
Flags
=
OFN_FILEMUSTEXIST
|
OFN_PATHMUSTEXIST
|
OFN_HIDEREADONLY
;
ofn
.
Flags
=
OFN_FILEMUSTEXIST
|
OFN_PATHMUSTEXIST
|
OFN_HIDEREADONLY
|
OFN_ENABLESIZING
;
ofn
.
nFileOffset
=
0
;
ofn
.
nFileExtension
=
0
;
ofn
.
lpstrDefExt
=
NULL
;
...
...
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