mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Only show log tracer if debug settings are enabled
This commit is contained in:
parent
3c365a5839
commit
ce02c0a826
@ -39,7 +39,8 @@ namespace Bloxstrap.UI.Elements.ContextMenu
|
|||||||
|
|
||||||
if (_activityWatcher is not null)
|
if (_activityWatcher is not null)
|
||||||
{
|
{
|
||||||
LogTracerMenuItem.Visibility = Visibility.Visible;
|
if (App.Settings.Prop.OhHeyYouFoundMe)
|
||||||
|
LogTracerMenuItem.Visibility = Visibility.Visible;
|
||||||
|
|
||||||
_activityWatcher.OnGameJoin += ActivityWatcher_OnGameJoin;
|
_activityWatcher.OnGameJoin += ActivityWatcher_OnGameJoin;
|
||||||
_activityWatcher.OnGameLeave += ActivityWatcher_OnGameLeave;
|
_activityWatcher.OnGameLeave += ActivityWatcher_OnGameLeave;
|
||||||
|
@ -75,7 +75,6 @@ namespace Bloxstrap
|
|||||||
30,
|
30,
|
||||||
(_, _) => Utilities.ShellExecute($"https://github.com/{App.ProjectRepository}/releases/tag/v{currentVersionInfo.ProductVersion}")
|
(_, _) => Utilities.ShellExecute($"https://github.com/{App.ProjectRepository}/releases/tag/v{currentVersionInfo.ProductVersion}")
|
||||||
);
|
);
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (!App.IsQuiet)
|
else if (!App.IsQuiet)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user