mirror of https://github.com/OpenVPN/openvpn-gui
fix starting a connection with double click on icon
parent
6c3ce57bc9
commit
efc62c3d19
2
tray.c
2
tray.c
|
@ -214,7 +214,7 @@ OnNotifyTray(LPARAM lParam)
|
||||||
|
|
||||||
/* Start connection if only one config exist */
|
/* Start connection if only one config exist */
|
||||||
if (o.num_configs == 1 && o.conn[0].state == disconnected)
|
if (o.num_configs == 1 && o.conn[0].state == disconnected)
|
||||||
StartOpenVPN(0);
|
StartOpenVPN(&o.conn[0]);
|
||||||
}
|
}
|
||||||
else if (disconnected_conns == o.num_configs - 1) {
|
else if (disconnected_conns == o.num_configs - 1) {
|
||||||
/* Show status window if only one connection is running */
|
/* Show status window if only one connection is running */
|
||||||
|
|
Loading…
Reference in New Issue