Skip to content
Snippets Groups Projects
Commit fdd5348f authored by Andrew A. de Laix's avatar Andrew A. de Laix
Browse files

Remove unimplemented software updater option. Fix potential double start of updater service.

parent 2c68cb2c
No related branches found
No related tags found
No related merge requests found
...@@ -506,7 +506,8 @@ void toggle_updater_service_active(LLControlVariable* control, const LLSD& new_v ...@@ -506,7 +506,8 @@ void toggle_updater_service_active(LLControlVariable* control, const LLSD& new_v
{ {
if(new_value.asInteger()) if(new_value.asInteger())
{ {
LLUpdaterService().startChecking(); LLUpdaterService update_service;
if(!update_service.isChecking()) update_service.startChecking();
} }
else else
{ {
......
...@@ -367,10 +367,12 @@ ...@@ -367,10 +367,12 @@
label="Install automatically" label="Install automatically"
name="Install_automatically" name="Install_automatically"
value="3" /> value="3" />
<!--
<combo_box.item <combo_box.item
label="Ask before installing" label="Ask before installing"
name="Install_ask" name="Install_ask"
value="1" /> value="1" />
-->
<combo_box.item <combo_box.item
label="Download and install updates manually" label="Download and install updates manually"
name="Install_manual" name="Install_manual"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment