Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/bebbfa71a422e4b1a452de38f80b684401d44d3a?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed to reset selected value after clearing option array

pull/123/head
Hieromon Ikasamo 6 years ago
parent 67e2996d66
commit bebbfa71a4
  1. 2
      src/AutoConnectElementBasisImpl.h

@ -172,6 +172,7 @@ void AutoConnectRadioBasis::empty(const size_t reserve) {
std::vector<String>().swap(_values);
if (reserve)
_values.reserve(reserve);
checked = 0;
}
/**
@ -221,6 +222,7 @@ void AutoConnectSelectBasis::empty(const size_t reserve) {
std::vector<String>().swap(_options);
if (reserve)
_options.reserve(reserve);
selected = 0;
}
/**

Loading…
Cancel
Save