diff options
| author | a1xd <[email protected]> | 2020-10-21 18:54:44 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2020-10-21 18:54:44 -0400 |
| commit | 91803c92a0ad16168126cf7d80de12d14855440d (patch) | |
| tree | 0884d5de5b5ab92a6575c39e9c19fa2fde9955bf /grapher/Models/Options/ActiveValueLabelXY.cs | |
| parent | update min time threshold for 8khz (diff) | |
| download | rawaccel-91803c92a0ad16168126cf7d80de12d14855440d.tar.xz rawaccel-91803c92a0ad16168126cf7d80de12d14855440d.zip | |
fix sens label visibility when separated
Diffstat (limited to 'grapher/Models/Options/ActiveValueLabelXY.cs')
| -rw-r--r-- | grapher/Models/Options/ActiveValueLabelXY.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/grapher/Models/Options/ActiveValueLabelXY.cs b/grapher/Models/Options/ActiveValueLabelXY.cs index 1367a6a..381779c 100644 --- a/grapher/Models/Options/ActiveValueLabelXY.cs +++ b/grapher/Models/Options/ActiveValueLabelXY.cs @@ -143,7 +143,8 @@ namespace grapher.Models.Options private void Align (int width) { FullWidth = width; - ShortenedWidth = FullWidth / 2; + // ShortenedWidth = FullWidth / 2; + ShortenedWidth = FullWidth; SetYLeft(); Y.Width = ShortenedWidth; |