From 09b6bdf1483e90cef2a03f5f459d77847b371d0c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 26 Feb 2018 13:20:03 +0100 Subject: [PATCH] fixed the hotkey clash in texture adjustment menu --- textures.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textures.cpp b/textures.cpp index 05675a92..121279b8 100644 --- a/textures.cpp +++ b/textures.cpp @@ -1066,7 +1066,7 @@ void showMenu() { dialog::addBreak(50); dialog::addBoolItem(XLAT("select master cells"), panstate == tpsCell, 'C'); - dialog::addBoolItem(XLAT("select master triangles"), panstate == tpsTriangle, 'T'); + dialog::addBoolItem(XLAT("select master triangles"), panstate == tpsTriangle, 'X'); dialog::addBoolItem(XLAT("fine tune vertices"), panstate == tpsTune, 'F'); dialog::addColorItem(XLAT("grid color (master)"), master_color, 'M');