mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-22 13:24:42 +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 :
|
||||
RECT _initialWindowRect;
|
||||
LONG _deltaWidth;
|
||||
LONG _initialClientWidth;
|
||||
LONG _deltaWidth = 0;
|
||||
LONG _initialClientWidth = 0;
|
||||
|
||||
DIALOG_TYPE _currentStatus;
|
||||
RECT _findClosePos, _replaceClosePos, _findInFilesClosePos, _markClosePos;
|
||||
|
Loading…
x
Reference in New Issue
Block a user