Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
hide the tracking dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
takashi310 committed Mar 25, 2023
1 parent e4131a5 commit 46f174e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fluorender/FluoRender/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ bool VRenderApp::OnInit()
std::string(VERSION_MAJOR_TAG) + std::string(".") +
std::string(VERSION_MINOR_TAG);
*/
std::string title = std::string(FLUORENDER_TITLE) + "1.6.2";
std::string title = std::string(FLUORENDER_TITLE) + "1.6.3";

m_frame = new VRenderFrame(
this,
Expand Down
2 changes: 1 addition & 1 deletion fluorender/FluoRender/TreePanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ void DataTreeCtrl::OnContextMenu(wxContextMenuEvent &event )
menu.AppendSeparator();
menu.Append(ID_Edit, "Analyze...");
menu.Append(ID_Info, "Information...");
menu.Append(ID_Trace, "Components && Tracking...");
//menu.Append(ID_Trace, "Components && Tracking...");
menu.Append(ID_NoiseCancelling, "Noise Reduction...");
menu.Append(ID_Counting, "Counting and Volume...");
menu.Append(ID_Colocalization, "Colocalization Analysis...");
Expand Down
8 changes: 4 additions & 4 deletions fluorender/FluoRender/VRenderFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ VRenderFrame::VRenderFrame(
"Show analysis tools for volume data");
m_tb_menu_edit->Append(ID_Measure, "Measurement...",
"Show measurement tools");
m_tb_menu_edit->Append(ID_Trace, "Components && Tracking...",
"Show tracking tools");
//m_tb_menu_edit->Append(ID_Trace, "Components && Tracking...",
// "Show tracking tools");
m_tb_menu_edit->Append(ID_NoiseCancelling, "Noise Reduction...",
"Show noise reduction dialog");
m_tb_menu_edit->Append(ID_Counting, "Counting and Volume...",
Expand Down Expand Up @@ -629,8 +629,8 @@ VRenderFrame::VRenderFrame(
m_top_tools->Append(m);
m = new wxMenuItem(m_top_tools,ID_Measure, wxT("&Measurement Tools..."));
m_top_tools->Append(m);
m = new wxMenuItem(m_top_tools,ID_Trace, wxT("Components && &Tracking..."));
m_top_tools->Append(m);
//m = new wxMenuItem(m_top_tools,ID_Trace, wxT("Components && &Tracking..."));
//m_top_tools->Append(m);
m = new wxMenuItem(m_top_tools,ID_NoiseCancelling, wxT("&Noise Reduction..."));
m_top_tools->Append(m);
m = new wxMenuItem(m_top_tools,ID_Counting, wxT("&Counting and Volume..."));
Expand Down

0 comments on commit 46f174e

Please sign in to comment.