mirror of
https://github.com/lubosz/overte.git
synced 2025-08-08 03:08:00 +02:00
fixed doc and removed log spam
This commit is contained in:
parent
b9deb7bb58
commit
1315677aec
2 changed files with 1 additions and 2 deletions
|
@ -609,7 +609,7 @@ public slots:
|
||||||
void setActiveDisplayPlugin(int index);
|
void setActiveDisplayPlugin(int index);
|
||||||
|
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* Opens `Browser.qml` in a pop-up window.
|
* Opens a web browser in a pop-up window.
|
||||||
* @function Window.openWebBrowser
|
* @function Window.openWebBrowser
|
||||||
*/
|
*/
|
||||||
void openWebBrowser();
|
void openWebBrowser();
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
(function () { // BEGIN LOCAL_SCOPE
|
(function () { // BEGIN LOCAL_SCOPE
|
||||||
function keyPressEvent(event) {
|
function keyPressEvent(event) {
|
||||||
if (event.text.toUpperCase() === "B" && event.isControl) {
|
if (event.text.toUpperCase() === "B" && event.isControl) {
|
||||||
console.log("TEST B");
|
|
||||||
Window.openWebBrowser();
|
Window.openWebBrowser();
|
||||||
} else if (event.text.toUpperCase() === "N" && event.isControl) {
|
} else if (event.text.toUpperCase() === "N" && event.isControl) {
|
||||||
Users.toggleIgnoreRadius();
|
Users.toggleIgnoreRadius();
|
||||||
|
|
Loading…
Reference in a new issue