From 0b721dd12b3908a5bda4aee35d0b3e5683c46c8f Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Sat, 6 Feb 2016 13:57:25 +0100 Subject: [PATCH] Add select next and prev vertex shortcuts to `Info` --- src/Info/Info.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Info/Info.cpp b/src/Info/Info.cpp index 165d83b..feac8e8 100644 --- a/src/Info/Info.cpp +++ b/src/Info/Info.cpp @@ -15,6 +15,7 @@ void Info::draw(){ ss << " 2. Texture mapping mode\n"; ss << " 3. Projection mapping mode\n"; ss << " - Press <,> and <.> to select previous or next surface\n"; + ss << " - Press \"<\" and \">\" to select previous or next vertex\n"; ss << " - Press to add new triangle surface\n"; ss << " - Press to add new quad surface\n"; ss << " - Press

to toggle perspective warping while quad surface selected\n";