summaryrefslogtreecommitdiff
path: root/grapher/Form1.cs
diff options
context:
space:
mode:
authora1xd <[email protected]>2020-09-28 01:32:02 -0400
committerGitHub <[email protected]>2020-09-28 01:32:02 -0400
commite49d06cae37765bb614c1740f9495a8c1d3100ac (patch)
tree6ca7d9612db7a139b60ccfd7407c338e4a0109f7 /grapher/Form1.cs
parentMerge pull request #26 from a1xd/argcheck (diff)
parentFix legacy offset bugs (diff)
downloadrawaccel-e49d06cae37765bb614c1740f9495a8c1d3100ac.tar.xz
rawaccel-e49d06cae37765bb614c1740f9495a8c1d3100ac.zip
Merge pull request #27 from JacobPalecki/GUI
GUI Error Handling
Diffstat (limited to 'grapher/Form1.cs')
-rw-r--r--grapher/Form1.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/grapher/Form1.cs b/grapher/Form1.cs
index 6f61c65..a1d43b3 100644
--- a/grapher/Form1.cs
+++ b/grapher/Form1.cs
@@ -32,8 +32,9 @@ namespace grapher
{
activeAccel = ManagedAccel.GetActiveAccel();
}
- catch (DriverNotInstalledException)
+ catch (DriverNotInstalledException ex)
{
+ MessageBox.Show($"Driver not installed.\n\n {ex.ToString()}");
throw;
}