Skip to content

Commit

Permalink
19.3.16 Adjusted: Tab
Browse files Browse the repository at this point in the history
  • Loading branch information
tablacus committed Mar 16, 2019
1 parent 5e97e47 commit 1d2a21d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Debug/addons/tabplus/config.xml
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<TablacusExplorer>
<General>
<Version>1.47</Version>
<MinVersion>2018.12.20</MinVersion>
<pubDate>Thu, 20 Dec 2018 00:00:00 GMT</pubDate>
<Version>1.48</Version>
<MinVersion>2019.3.16</MinVersion>
<pubDate>Sat, 16 Mar 2019 00:00:00 GMT</pubDate>
<Options>Common:0:0</Options>
<Creator>Gaku</Creator>
<URL>http://tablacus.github.io/TablacusExplorerAddons/</URL>
Expand Down
4 changes: 3 additions & 1 deletion Debug/addons/tabplus/script.js
Expand Up @@ -412,7 +412,9 @@ if (window.Addon == 1) {
res = /^tabplus_(\d+)_(\d+)/.exec(Addons.TabPlus.Drag5);
if (res) {
if (res[1] != Id || res[2] != nDrop) {
te.Ctrl(CTRL_TC, res[1]).Move(res[2], nDrop, TC);
var TC1 = te.Ctrl(CTRL_TC, res[1]);
TC1.Move(res[2], nDrop, TC);
TC1.SelectedIndex = nDrop;
this.Drop = [];
}
}
Expand Down
2 changes: 1 addition & 1 deletion TE/Resource.h
Expand Up @@ -9,7 +9,7 @@
#define STRING2(str) #str
#define VER_Y 19
#define VER_M 3
#define VER_D 14
#define VER_D 16

//Icon
#define IDI_TE 1
Expand Down
2 changes: 1 addition & 1 deletion TE/TE.cpp
Expand Up @@ -18706,7 +18706,6 @@ VOID CteTabCtrl::Move(int nSrc, int nDest, CteTabCtrl *pDestTab)
TabCtrl_SetCurSel(m_hwnd, nSrc);
} else {
TabCtrl_SetCurSel(m_hwnd, nDest);
TabChanged(TRUE);
}
}
}
Expand All @@ -18715,6 +18714,7 @@ VOID CteTabCtrl::Move(int nSrc, int nDest, CteTabCtrl *pDestTab)
TabCtrl_SetCurSel(pDestTab->m_hwnd, nDest);
ArrangeWindow();
}
TabChanged(TRUE);
}
}

Expand Down

0 comments on commit 1d2a21d

Please sign in to comment.