diff options
| author | a1xd <[email protected]> | 2021-09-23 00:21:57 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-09-23 22:37:03 -0400 |
| commit | 79c6a885fc732a0fff0fe694a86ed6450b00794b (patch) | |
| tree | 8eab1c13f2bc6edac1e1129561f6e27549ce4c39 /grapher/Constants/Constants.cs | |
| parent | docs - add win10 as prereq (diff) | |
| download | rawaccel-79c6a885fc732a0fff0fe694a86ed6450b00794b.tar.xz rawaccel-79c6a885fc732a0fff0fe694a86ed6450b00794b.zip | |
add indicator to last move on normalized dev read
Diffstat (limited to 'grapher/Constants/Constants.cs')
| -rw-r--r-- | grapher/Constants/Constants.cs | 10 |
1 files changed, 8 insertions, 2 deletions
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"; - /// <summary> Text to direcitonality panel title when panel is closed. </summary> + /// <summary> Text to directionality panel title when panel is closed. </summary> public const string DirectionalityTitleClosed = "Anisotropy \u25BC"; - /// <summary> Text to direcitonality panel title when panel is open. </summary> + /// <summary> Text to directionality panel title when panel is open. </summary> public const string DirectionalityTitleOpen = "Anisotropy \u25B2"; + /// <summary> Default last mouse move label text format. </summary> + public const string MouseMoveDefaultFormat = "Last (x, y): ({0}, {1})"; + + /// <summary> Last mouse move label text format when last input was from a dpi normalized device. </summary> + public const string MouseMoveNormalizedFormat = MouseMoveDefaultFormat + "!"; + /// <summary> Style used by System.Double.Parse </summary> public const NumberStyles FloatStyle = NumberStyles.Float | NumberStyles.AllowThousands; |