Skip to content

Commit

Permalink
Remove inverted bool statement for debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmemstr committed Nov 28, 2021
1 parent 1064ccb commit 97afe5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void MainWindow_ContentRendered(object sender, EventArgs e) {
gpuName.Text += $" ({guessedGpu})";


if (!result.Item1) {
if (result.Item1) {
// Show new driver available in application window.
textBlock.Text = "New NVIDIA driver found!";
// Create a button with a link.
Expand Down

0 comments on commit 97afe5f

Please sign in to comment.