Quote:
Originally Posted by areo16
No need to yell budd.
|
Did I yell?

I just try to answer your questions.
Quote:
Originally Posted by areo16
When it opens the edit box with one click where does the cursor go if there is multiple lines of text in the text edit box? on first click?
|
The cursor always goes in the end of the text.
Quote:
Originally Posted by Anvar1061
SSS
How to disable the keyboard shortcuts ?
|
You need to edit "Commands_en.cfg".
One example:
Code:
[Cmd67]
Name=Toggle_hydrophone_view
Ctxt=1
Key0=0x48,,"H"
Now, you added ; before Key0=, and there will not be key command "H".
;Key0=0x48,,"H"
Code:
[Cmd67]
Name=Toggle_hydrophone_view
Ctxt=1
;Key0=0x48,,"H"
Or, you want this key command, but to be with Shift or Ctrl.
Then add "s" for Shift, or "c" for Ctrl here, between commas:
Key0=0x48,s,"H"
Code:
[Cmd67]
Name=Toggle_hydrophone_view
Ctxt=1
Key0=0x48,s,"H"