Skip to content

Commit

Permalink
fix: 回显设置功能失效 close #167
Browse files Browse the repository at this point in the history
  • Loading branch information
chenxuuu committed Jun 13, 2024
1 parent 47fb776 commit 99971cc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion llcom/Pages/DataShowPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,12 @@ private void Logger_DataShowTask(object sender, Tools.DataShow e)
});
}

//如果不开回显,就别打印
if(!Tools.Global.setting.showSend && e is DataShowPara para && para.send)
return;

//显示到列表
if(!needPack && e is not DataShowRaw)//不分包模式
if (!needPack && e is not DataShowRaw)//不分包模式
{
var DataText = Tools.Global.setting.showHexFormat switch
{
Expand Down

0 comments on commit 99971cc

Please sign in to comment.