mirror of
				https://github.com/sammy-ette/Hilbish
				synced 2025-08-10 02:52:03 +00:00 
			
		
		
		
	fix(nature/greenhouse): dont redraw if scroll pos stays the same
This commit is contained in:
		
							parent
							
								
									bb9a6fe39e
								
							
						
					
					
						commit
						8b5b9b3c1c
					
				@ -35,11 +35,14 @@ function Greenhouse:draw()
 | 
				
			|||||||
end
 | 
					end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function Greenhouse:scroll(direction)
 | 
					function Greenhouse:scroll(direction)
 | 
				
			||||||
 | 
						local oldOffset = self.offset
 | 
				
			||||||
	if direction == 'down' then
 | 
						if direction == 'down' then
 | 
				
			||||||
		self.offset = math.min(self.offset + 1, #self.lines)
 | 
							self.offset = math.min(self.offset + 1, #self.lines)
 | 
				
			||||||
	elseif direction == 'up' then
 | 
						elseif direction == 'up' then
 | 
				
			||||||
		self.offset = math.max(self.offset - 1, 1)
 | 
							self.offset = math.max(self.offset - 1, 1)
 | 
				
			||||||
	end
 | 
						end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if self.offset ~= oldOffset then self:draw() end
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function Greenhouse:update()
 | 
					function Greenhouse:update()
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user