diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log
index a076046de..4f281edaf 100644
--- a/PowerEditor/bin/change.log
+++ b/PowerEditor/bin/change.log
@@ -1,7 +1,7 @@
-Notepad++ v5.9.6.1 new features and fixed bugs:
+Notepad++ v5.9.6.2 new features and fixed bugs:
-1. Fix the crash issue while execute "Add Files from Directory" command (Project Manager).
-2. Enhance "Add files from Directory" command in Project Manager - sorted result: first all folders, then all files, both of them alphabetically.
+1. Fix a crash issue while right-clicking on the doc switcher's column control ("Name" and "Ext.").
+2. Reduce the margin of edit zone.
diff --git a/PowerEditor/bin/npp.pdb b/PowerEditor/bin/npp.pdb
index b59b4dd4b..fd828250a 100644
Binary files a/PowerEditor/bin/npp.pdb and b/PowerEditor/bin/npp.pdb differ
diff --git a/PowerEditor/installer/nativeLang/chineseSimplified.xml b/PowerEditor/installer/nativeLang/chineseSimplified.xml
index 4c3d12c41..bc447e0bd 100644
--- a/PowerEditor/installer/nativeLang/chineseSimplified.xml
+++ b/PowerEditor/installer/nativeLang/chineseSimplified.xml
@@ -23,11 +23,12 @@
-
+
-
+
+
@@ -56,7 +57,7 @@
-
+
@@ -89,8 +90,8 @@
-
-
+
+
@@ -98,7 +99,13 @@
-
+
+
+
+
+
+
+
@@ -176,9 +183,10 @@
+
-
+
@@ -199,6 +207,7 @@
+
@@ -223,8 +232,9 @@
-
-
+
+
+
@@ -310,7 +320,7 @@
-
+
@@ -319,7 +329,6 @@
-
@@ -336,6 +345,7 @@
+
@@ -347,6 +357,8 @@
+
+
@@ -391,6 +403,7 @@
+
@@ -418,15 +431,14 @@
-
-
-
+
+
@@ -438,7 +450,7 @@
-
+
@@ -524,7 +536,7 @@
-
+
@@ -585,4 +597,4 @@
-
\ No newline at end of file
+
diff --git a/PowerEditor/installer/nativeLang/czech.xml b/PowerEditor/installer/nativeLang/czech.xml
index 16ab090c7..560c4145f 100644
--- a/PowerEditor/installer/nativeLang/czech.xml
+++ b/PowerEditor/installer/nativeLang/czech.xml
@@ -1,7 +1,7 @@
@@ -668,5 +668,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PowerEditor/installer/nativeLang/german.xml b/PowerEditor/installer/nativeLang/german.xml
index 0bae4e635..eeaf9e39d 100644
--- a/PowerEditor/installer/nativeLang/german.xml
+++ b/PowerEditor/installer/nativeLang/german.xml
@@ -1,7 +1,7 @@
@@ -44,7 +44,7 @@
-
+
@@ -226,7 +226,7 @@
-
+
@@ -245,7 +245,7 @@
-
+
@@ -475,7 +475,7 @@
-
+
@@ -566,9 +566,9 @@
-
+
-
+
@@ -621,7 +621,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
diff --git a/PowerEditor/installer/nativeLang/italian.xml b/PowerEditor/installer/nativeLang/italian.xml
index deca0ec72..3159fc22f 100644
--- a/PowerEditor/installer/nativeLang/italian.xml
+++ b/PowerEditor/installer/nativeLang/italian.xml
@@ -1,7 +1,7 @@
@@ -626,5 +626,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PowerEditor/installer/nppSetup.nsi b/PowerEditor/installer/nppSetup.nsi
index 891f1e421..9d146a5ed 100644
--- a/PowerEditor/installer/nppSetup.nsi
+++ b/PowerEditor/installer/nppSetup.nsi
@@ -18,10 +18,10 @@
; Define the application name
!define APPNAME "Notepad++"
-!define APPVERSION "5.9.6.1"
+!define APPVERSION "5.9.6.2"
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
!define VERSION_MAJOR 5
-!define VERSION_MINOR 961
+!define VERSION_MINOR 962
!define APPWEBSITE "http://notepad-plus-plus.org/"
diff --git a/PowerEditor/src/WinControls/ProjectPanel/TreeView.cpp b/PowerEditor/src/WinControls/ProjectPanel/TreeView.cpp
index a7ee36f69..2bf14f266 100644
--- a/PowerEditor/src/WinControls/ProjectPanel/TreeView.cpp
+++ b/PowerEditor/src/WinControls/ProjectPanel/TreeView.cpp
@@ -29,7 +29,7 @@ void TreeView::init(HINSTANCE hInst, HWND parent, int treeViewID)
WC_TREEVIEW,
TEXT("Tree View"),
WS_CHILD | WS_BORDER | WS_HSCROLL | WS_TABSTOP | TVS_LINESATROOT | TVS_HASLINES |
- TVS_HASBUTTONS | TVS_HASBUTTONS | TVS_SHOWSELALWAYS | TVS_EDITLABELS | TVS_INFOTIP,
+ TVS_DISABLEDRAGDROP | TVS_HASBUTTONS | TVS_HASBUTTONS | TVS_SHOWSELALWAYS | TVS_EDITLABELS | TVS_INFOTIP,
0, 0, 0, 0,
_hParent,
NULL,
diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h
index 1c1c1870c..18199b357 100644
--- a/PowerEditor/src/resource.h
+++ b/PowerEditor/src/resource.h
@@ -18,12 +18,12 @@
#ifndef RESOURCE_H
#define RESOURCE_H
-#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.9.6.1")
+#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.9.6.2")
// should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
// ex : #define VERSION_VALUE TEXT("5.63\0")
-#define VERSION_VALUE TEXT("5.961\0")
-#define VERSION_DIGITALVALUE 5, 9, 6, 1
+#define VERSION_VALUE TEXT("5.962\0")
+#define VERSION_DIGITALVALUE 5, 9, 6, 2
#ifdef UNICODE
#define UNICODE_ANSI_MODE TEXT("(UNICODE)")