• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コンソールベースの ToDo ソフトウェアの私的改良版


Commit MetaInfo

Revision125cb85e44ea80f35a5a75238acdecfff7fc5441 (tree)
Zeit2013-02-13 19:39:19
AutorTakeshi Hamasaki <hmatrjp@user...>
CommiterTakeshi Hamasaki

Log Message

src/interface.cc : added a function to redraw screen by pressing Ctrl-L.

Ändern Zusammenfassung

Diff

--- a/src/interface.cc
+++ b/src/interface.cc
@@ -62,6 +62,10 @@ void Interface::main()
6262 if (KEY_HOME == key) home();
6363 if (KEY_END == key) end();
6464 }
65+ else if (0xc == key) // Ctrl-L
66+ {
67+ resizeTerm();
68+ }
6569 else if (config.getAction(key, action))
6670 {
6771 screen.infoClear();