| 122 | } |
| 123 | |
| 124 | void GitModule::createPreferencePage() |
| 125 | { |
| 126 | auto& page = GlobalPreferenceSystem().getPage(_("Settings/Version Control")); |
| 127 | |
| 128 | page.appendCheckBox(_("Enable Auto-Fetch"), RKEY_AUTO_FETCH_ENABLED); |
| 129 | page.appendSpinner(_("Fetch Interval (Minutes)"), RKEY_AUTO_FETCH_INTERVAL, 0.25, 900, 2); |
| 130 | } |
| 131 | |
| 132 | } |
| 133 |
nothing calls this directly
no test coverage detected