diff Console.lua @ 108:7a36f5a92f0a v8.0.1-20180718

8.0.1 patch update
author Nenue
date Wed, 18 Jul 2018 14:54:54 -0400
parents 8dc0c1917890
children
line wrap: on
line diff
--- a/Console.lua	Tue Oct 17 16:57:38 2017 -0400
+++ b/Console.lua	Wed Jul 18 14:54:54 2018 -0400
@@ -132,7 +132,7 @@
   if self.isPressed then
     r,g,b,a = 1,1,1,1
   elseif self.isHover then
-    r,g,b,a = .5,.5,.5,1
+    r,g,b,a = 1,.5,0,1
   end
 
 
@@ -178,6 +178,14 @@
     if up then self.out:ScrollUp()
     else self.out:ScrollDown() end
   end
+
+
+  if self.out:AtBottom() then
+
+    self.newMessage = nil
+    self.Dock:Update()
+  end
+
 end
 function DevianConsoleMixin:MinMax(minimized)
   minimized = minimized or self.minimized