Skip to content

Commit

Permalink
Merge pull request elfmz#2397 from spnethw/fix_2396_netrocks_extrasit…
Browse files Browse the repository at this point in the history
…esettings_load_correctly_keepalive

fix elfmz#2396: NetRocks: Extra connection options, load KeepAlive correctly
  • Loading branch information
elfmz authored Sep 29, 2024
2 parents edba9b4 + 0c99e74 commit b09256b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NetRocks/src/UI/Settings/ExtraSiteSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class ExtraSiteSettings : protected BaseDialog

_di.SetLine(2);
_di.AddAtLine(DI_TEXT, 5,56, 0, MKeepAlive);
itoa(std::min(0, sc.GetInt("KeepAlive", 0)), sz, 10);
itoa(sc.GetInt("KeepAlive", 0), sz, 10);
_i_keepalive = _di.AddAtLine(DI_FIXEDIT, 57,62, DIF_MASKEDIT, sz, "999999");

_di.NextLine();
Expand Down

0 comments on commit b09256b

Please sign in to comment.