diff options
Diffstat (limited to 'grapher/Form1.cs')
| -rw-r--r-- | grapher/Form1.cs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/grapher/Form1.cs b/grapher/Form1.cs index a90cfbc..3df1b67 100644 --- a/grapher/Form1.cs +++ b/grapher/Form1.cs @@ -144,7 +144,8 @@ namespace grapher acceleration, limitOrExponent, midpoint, - writeButton); + writeButton, + MouseLabel); } #endregion Constructor @@ -157,6 +158,16 @@ namespace grapher #region Methods + protected override void WndProc(ref Message m) + { + if (m.Msg == 0x00ff) + { + AccelGUI.MouseWatcher.ReadMouseMove(m); + } + + base.WndProc(ref m); + } + private void Form1_Load(object sender, EventArgs e) { |