From bca9fab46f64c739c7df89c2c19e1e68ac92435f Mon Sep 17 00:00:00 2001 From: Gregory Diaz Date: Tue, 21 Oct 2014 18:58:23 -0700 Subject: [PATCH] More work to UI --- PrinterControls/PrinterConnections/PrinterListItems.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PrinterControls/PrinterConnections/PrinterListItems.cs b/PrinterControls/PrinterConnections/PrinterListItems.cs index be17f107e..69335b6e0 100644 --- a/PrinterControls/PrinterConnections/PrinterListItems.cs +++ b/PrinterControls/PrinterConnections/PrinterListItems.cs @@ -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;