Commit edc418ec authored by keyongyu's avatar keyongyu

fix

parent 137090b1
...@@ -588,12 +588,6 @@ void AddFunction(string funtxt) ...@@ -588,12 +588,6 @@ void AddFunction(string funtxt)
string GetFunName(string str) string GetFunName(string str)
{ {
int t=str.IndexOf("."); int t=str.IndexOf(".");
//if(str.StartsWith("Debug.")
// || str.StartsWith("Duel.")
// || str.StartsWith("bit.")
// || str.StartsWith("aux.")
// )
// return str;
if(t>0) if(t>0)
return str.Substring(t+1); return str.Substring(t+1);
return str; return str;
...@@ -602,8 +596,8 @@ void AddFuncTooltip(string name,string desc) ...@@ -602,8 +596,8 @@ void AddFuncTooltip(string name,string desc)
{ {
if(!string.IsNullOrEmpty(name)) if(!string.IsNullOrEmpty(name))
{ {
AddAutoMenuItem(funList, name, desc);
string fname=GetFunName(name); string fname=GetFunName(name);
AddAutoMenuItem(funList, fname, desc);
if(!tooltipDic.ContainsKey(fname)){ if(!tooltipDic.ContainsKey(fname)){
tooltipDic.Add(fname, desc ); tooltipDic.Add(fname, desc );
} }
......
...@@ -28,4 +28,4 @@ ...@@ -28,4 +28,4 @@
// //
// You can specify all the values or you can use the default the Revision and // You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below: // Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion("2.2.6.3")] [assembly: AssemblyVersion("2.2.6.4")]
[DataEditorX]2.2.6.3[DataEditorX] [DataEditorX]2.2.6.4[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL] [URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★文件关联 ★文件关联
...@@ -58,6 +58,8 @@ Ctrl+鼠标左键 跳转到函数定义 ...@@ -58,6 +58,8 @@ Ctrl+鼠标左键 跳转到函数定义
Ctrl+鼠标滑轮 缩放文字 Ctrl+鼠标滑轮 缩放文字
★更新历史 ★更新历史
2.2.6.4
修复lua编辑器的自动完成
2.2.6.3 2.2.6.3
导出数据:改为导出当前列表 导出数据:改为导出当前列表
2.2.6.2 2.2.6.2
......
No preview for this file type
# history # history
F:\games\ygopro\p.cdb F:\games\ygopro\script\c33396948.lua
F:\games\ygopro\cards.cdb F:\games\ygopro\cards.cdb
F:\games\ygopro\script\c255998.lua F:\games\ygopro\script\c255998.lua
\ No newline at end of file
[DataEditorX]2.2.6.3[DataEditorX] [DataEditorX]2.2.6.4[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL] [URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★文件关联 ★文件关联
...@@ -58,6 +58,8 @@ Ctrl+鼠标左键 跳转到函数定义 ...@@ -58,6 +58,8 @@ Ctrl+鼠标左键 跳转到函数定义
Ctrl+鼠标滑轮 缩放文字 Ctrl+鼠标滑轮 缩放文字
★更新历史 ★更新历史
2.2.6.4
修复lua编辑器的自动完成
2.2.6.3 2.2.6.3
导出数据:改为导出当前列表 导出数据:改为导出当前列表
2.2.6.2 2.2.6.2
......
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment