More work to UI

This commit is contained in:
Gregory Diaz 2014-10-21 18:58:23 -07:00
parent 6a8de729bb
commit bca9fab46f

View file

@ -164,7 +164,7 @@ namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
void onMouse_Enter(object sender, EventArgs args)
{
this.rightButtonOverlay.SlideOut ();
this.rightButtonOverlay.SlideIn ();
this.BackgroundColor = this.hoverBackgroundColor;
this.printerName.TextColor = this.hoverTextColor;
@ -173,7 +173,7 @@ namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
void onMouse_Leave(object sender, EventArgs args)
{
this.rightButtonOverlay.SlideIn ();
this.rightButtonOverlay.SlideOut ();
this.BackgroundColor = this.defaultBackgroundColor;
this.printerName.TextColor = this.defaultTextColor;