Skip to content

Commit

Permalink
Only show log tracer if debug settings are enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
pizzaboxer committed Jul 24, 2023
1 parent 3c365a5 commit ce02c0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Bloxstrap/UI/Elements/ContextMenu/MenuContainer.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ public MenuContainer(RobloxActivity? activityWatcher, DiscordRichPresence? richP

if (_activityWatcher is not null)
{
LogTracerMenuItem.Visibility = Visibility.Visible;
if (App.Settings.Prop.OhHeyYouFoundMe)
LogTracerMenuItem.Visibility = Visibility.Visible;

_activityWatcher.OnGameJoin += ActivityWatcher_OnGameJoin;
_activityWatcher.OnGameLeave += ActivityWatcher_OnGameLeave;
Expand Down
1 change: 0 additions & 1 deletion Bloxstrap/Updater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ public static void CheckInstalledVersion()
30,
(_, _) => Utilities.ShellExecute($"https://github.com/{App.ProjectRepository}/releases/tag/v{currentVersionInfo.ProductVersion}")
);

}
else if (!App.IsQuiet)
{
Expand Down

0 comments on commit ce02c0a

Please sign in to comment.