mirror of
				https://github.com/ArthurSonzogni/FTXUI.git
				synced 2025-10-31 10:38:09 +08:00 
			
		
		
		
	Parse mouse middle
This commit is contained in:
		| @@ -41,6 +41,14 @@ class DrawKey : public Component { | ||||
|         code += L"mouse_left_move(" +  // | ||||
|                 std::to_wstring(keys[i].mouse_x()) + L"," + | ||||
|                 std::to_wstring(keys[i].mouse_y()) + L")"; | ||||
|       } else if (keys[i].is_mouse_middle_down()) { | ||||
|         code += L"mouse_middle_down(" +  // | ||||
|                 std::to_wstring(keys[i].mouse_x()) + L"," + | ||||
|                 std::to_wstring(keys[i].mouse_y()) + L")"; | ||||
|       } else if (keys[i].is_mouse_middle_move()) { | ||||
|         code += L"mouse_middle_move(" +  // | ||||
|                 std::to_wstring(keys[i].mouse_x()) + L"," + | ||||
|                 std::to_wstring(keys[i].mouse_y()) + L")"; | ||||
|       } else if (keys[i].is_mouse_right_down()) { | ||||
|         code += L"mouse_right_down(" +  // | ||||
|                 std::to_wstring(keys[i].mouse_x()) + L"," + | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 ArthurSonzogni
					ArthurSonzogni