FIX: temp disable markdown tooltip on release to public

Change-Id: I6f37b9176aaec6f0d7d3ccc6aa60c5a829729fd5
This commit is contained in:
chunmao.guo 2022-07-26 18:11:34 +08:00 committed by Lane.Wei
parent 1705f3d5b7
commit 18920df354
1 changed files with 3 additions and 0 deletions

View File

@ -293,6 +293,9 @@ MarkdownTip* MarkdownTip::markdownTip(bool create)
bool MarkdownTip::ShowTip(std::string const& tip, std::string const & tooltip, wxPoint pos)
{
#if BBL_RELEASE_TO_PUBLIC
return false;
#endif
return markdownTip()->ShowTip(pos, tip, tooltip);
}