mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-24 22:34:54 +02:00
Fix Find dialog display mess-up
Find dialog display mess-up caused by unintialized member variable. Intialization of member variables fixes it. Fix #10511, close #10530
This commit is contained in:
parent
aff77e27d3
commit
495d202a43
@ -363,8 +363,8 @@ protected :
|
|||||||
|
|
||||||
private :
|
private :
|
||||||
RECT _initialWindowRect;
|
RECT _initialWindowRect;
|
||||||
LONG _deltaWidth;
|
LONG _deltaWidth = 0;
|
||||||
LONG _initialClientWidth;
|
LONG _initialClientWidth = 0;
|
||||||
|
|
||||||
DIALOG_TYPE _currentStatus;
|
DIALOG_TYPE _currentStatus;
|
||||||
RECT _findClosePos, _replaceClosePos, _findInFilesClosePos, _markClosePos;
|
RECT _findClosePos, _replaceClosePos, _findInFilesClosePos, _markClosePos;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user