Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
leap
bitmask-vpn
Commits
47e0380c
Unverified
Commit
47e0380c
authored
Nov 23, 2020
by
Kali Kaneko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[bug] fix my syntax error
sorry about that :(
parent
0da663d2
Pipeline
#49578
passed with stages
in 10 minutes and 30 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gui/qml/main.qml
gui/qml/main.qml
+2
-2
No files found.
gui/qml/main.qml
View file @
47e0380c
...
...
@@ -170,7 +170,7 @@ ApplicationWindow {
if
(
systrayVisible
)
{
show
();
if
(
Qt
.
platform
.
os
===
"
windows
"
)
{
let
appname
:
ctx
?
ctx
.
appName
:
"
VPN
"
let
appname
=
ctx
?
ctx
.
appName
:
"
VPN
"
;
showNotification
(
appname
+
"
is up and running. Please use system tray icon to control it.
"
);
}
}
...
...
@@ -180,7 +180,7 @@ ApplicationWindow {
function
showNotification
(
msg
)
{
console
.
log
(
"
Going to show notification message:
"
,
msg
);
if
(
supportsMessages
)
{
let
appname
:
ctx
?
ctx
.
appName
:
"
VPN
"
let
appname
=
ctx
?
ctx
.
appName
:
"
VPN
"
;
showMessage
(
appname
,
msg
,
null
,
15000
);
}
else
{
console
.
log
(
"
System doesn't support systray notifications
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment