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
2e0d8cfc
Commit
2e0d8cfc
authored
Aug 20, 2002
by
Aric Stewart
Committed by
Alexandre Julliard
Aug 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't set EN_CHANGE at creation time.
parent
b9678343
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
edit.c
controls/edit.c
+6
-2
No files found.
controls/edit.c
View file @
2e0d8cfc
...
...
@@ -3875,8 +3875,12 @@ static LRESULT EDIT_WM_Create(HWND hwnd, EDITSTATE *es, LPCWSTR name)
* update caret
*/
es
->
selection_start
=
es
->
selection_end
=
0
;
/* send the notification after the selection start and end are set */
EDIT_NOTIFY_PARENT
(
hwnd
,
es
,
EN_CHANGE
,
"EN_CHANGE"
);
/* Adobe Photoshop does NOT like this. and MSDN says that EN_CHANGE
* Messages are only to be sent when the USER does something to
* change the contents. So I am removing this EN_CHANGE
*
* EDIT_NOTIFY_PARENT(hwnd, es, EN_CHANGE, "EN_CHANGE");
*/
EDIT_EM_ScrollCaret
(
hwnd
,
es
);
}
/* force scroll info update */
...
...
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