Skip to content

Commit

Permalink
23.10.18
Browse files Browse the repository at this point in the history
  • Loading branch information
tablacus committed Oct 18, 2023
1 parent 0649e07 commit c14f2c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Debug/addons/treeview/config.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<TablacusExplorer>
<General>
<Version>1.43</Version>
<MinVersion>2021.11.1</MinVersion>
<pubDate>Mon, 22 Nov 2021 00:00:00 GMT</pubDate>
<Version>1.44</Version>
<MinVersion>2023.9.13</MinVersion>
<pubDate>Wed, 18 Oct 2023 00:00:00 GMT</pubDate>
<Options>Common:0,5,6,7,8,9:0</Options>
<Level>2</Level>
<Creator>Gaku</Creator>
Expand Down
8 changes: 5 additions & 3 deletions Debug/addons/treeview/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,11 @@ if (WINVER >= 0x600) {
const hLock = api.SHChangeNotification_Lock(wParam, lParam, pidls);
if (hLock) {
api.SHChangeNotification_Unlock(hLock);
const cFV = te.Ctrls(CTRL_FV);
for (let i in cFV) {
cFV[i].TreeView.Notify(pidls.lEvent, pidls[0], pidls[1], wParam, lParam);
if (pidls[0] && /^[A-Z]:\\|^\\\\\w/i.test(pidls[0].Path) && !IsCloud(pidls[0])) {
const cFV = te.Ctrls(CTRL_FV);
for (let i in cFV) {
cFV[i].TreeView.Notify(pidls.lEvent, pidls[0], pidls[1], wParam, lParam);
}
}
}
return S_OK;
Expand Down

0 comments on commit c14f2c0

Please sign in to comment.