Compare commits
	
		
			2 Commits
		
	
	
		
			release-d2
			...
			bf5be00c12
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| bf5be00c12 | |||
| dc7c2559d6 | 
| @@ -126,12 +126,12 @@ class SelectionTracker { | |||||||
| 		constexpr Selection selection() const noexcept { | 		constexpr Selection selection() const noexcept { | ||||||
| 			return { | 			return { | ||||||
| 				{ | 				{ | ||||||
| 					ox::min(m_pointA.x, m_pointB.x), | 					ox::max(0, ox::min(m_pointA.x, m_pointB.x)), | ||||||
| 					ox::min(m_pointA.y, m_pointB.y), | 					ox::max(0, ox::min(m_pointA.y, m_pointB.y)), | ||||||
| 				}, | 				}, | ||||||
| 				{ | 				{ | ||||||
| 					ox::max(m_pointA.x, m_pointB.x), | 					ox::max(0, ox::max(m_pointA.x, m_pointB.x)), | ||||||
| 					ox::max(m_pointA.y, m_pointB.y), | 					ox::max(0, ox::max(m_pointA.y, m_pointB.y)), | ||||||
| 				}, | 				}, | ||||||
| 			}; | 			}; | ||||||
| 		} | 		} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user