From 79c6a885fc732a0fff0fe694a86ed6450b00794b Mon Sep 17 00:00:00 2001
From: a1xd <68629610+a1xd@users.noreply.github.com>
Date: Thu, 23 Sep 2021 00:21:57 -0400
Subject: add indicator to last move on normalized dev read
---
grapher/Constants/Constants.cs | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
(limited to 'grapher/Constants')
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs
index 0b15ce6..fa500de 100644
--- a/grapher/Constants/Constants.cs
+++ b/grapher/Constants/Constants.cs
@@ -128,12 +128,18 @@ namespace grapher
public const string GuiConfigFileName = ".config";
- /// Text to direcitonality panel title when panel is closed.
+ /// Text to directionality panel title when panel is closed.
public const string DirectionalityTitleClosed = "Anisotropy \u25BC";
- /// Text to direcitonality panel title when panel is open.
+ /// Text to directionality panel title when panel is open.
public const string DirectionalityTitleOpen = "Anisotropy \u25B2";
+ /// Default last mouse move label text format.
+ public const string MouseMoveDefaultFormat = "Last (x, y): ({0}, {1})";
+
+ /// Last mouse move label text format when last input was from a dpi normalized device.
+ public const string MouseMoveNormalizedFormat = MouseMoveDefaultFormat + "!";
+
/// Style used by System.Double.Parse
public const NumberStyles FloatStyle = NumberStyles.Float | NumberStyles.AllowThousands;
--
cgit v1.2.3