Skip to content

Commit 1bebc23

Browse files
committed
Default stats panel visibility to true
Closes #198
1 parent 44b45dd commit 1bebc23

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/settings/settings.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -397,19 +397,19 @@ class Settings {
397397

398398
// Item stats panel
399399
/** Remembered visibility state for the statistics panel in the ascents tab of the main window. */
400-
inline static const Setting<bool> ascentsStats_show = Setting<bool> ("implicit/mainWindow/ascents/showStats");
400+
inline static const Setting<bool> ascentsStats_show = Setting<bool> ("implicit/mainWindow/ascents/showStats", true);
401401
/** Remembered visibility state for the statistics panel in the peaks tab of the main window. */
402-
inline static const Setting<bool> peaksStats_show = Setting<bool> ("implicit/mainWindow/peaks/showStats");
402+
inline static const Setting<bool> peaksStats_show = Setting<bool> ("implicit/mainWindow/peaks/showStats", true);
403403
/** Remembered visibility state for the statistics panel in the trips tab of the main window. */
404-
inline static const Setting<bool> tripsStats_show = Setting<bool> ("implicit/mainWindow/trips/showStats");
404+
inline static const Setting<bool> tripsStats_show = Setting<bool> ("implicit/mainWindow/trips/showStats", true);
405405
/** Remembered visibility state for the statistics panel in the hikers tab of the main window. */
406-
inline static const Setting<bool> hikersStats_show = Setting<bool> ("implicit/mainWindow/hikers/showStats");
406+
inline static const Setting<bool> hikersStats_show = Setting<bool> ("implicit/mainWindow/hikers/showStats", true);
407407
/** Remembered visibility state for the statistics panel in the regions tab of the main window. */
408-
inline static const Setting<bool> regionsStats_show = Setting<bool> ("implicit/mainWindow/regions/showStats");
408+
inline static const Setting<bool> regionsStats_show = Setting<bool> ("implicit/mainWindow/regions/showStats", true);
409409
/** Remembered visibility state for the statistics panel in the ranges tab of the main window. */
410-
inline static const Setting<bool> rangesStats_show = Setting<bool> ("implicit/mainWindow/ranges/showStats");
410+
inline static const Setting<bool> rangesStats_show = Setting<bool> ("implicit/mainWindow/ranges/showStats", true);
411411
/** Remembered visibility state for the statistics panel in the countries tab of the main window. */
412-
inline static const Setting<bool> countriesStats_show = Setting<bool> ("implicit/mainWindow/countries/showStats");
412+
inline static const Setting<bool> countriesStats_show = Setting<bool> ("implicit/mainWindow/countries/showStats", true);
413413

414414
// Stats panel splitter sizes
415415
/** Remembered sizes for the splitter between table and statistics frame in the ascents tab of the main window. */

0 commit comments

Comments
 (0)