Skip to content

Commit 317f973

Browse files
committed
fixes
1 parent 32b64ce commit 317f973

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

help/CelestiaGuide.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1431,15 +1431,15 @@ <h3 id="displayoptions">Render / Display Options</h3>
14311431
[
14321432
</td>
14331433
<td class="rightcell">
1434-
Decrease Exposure
1434+
Decrease Exposure Time
14351435
</td>
14361436
</tr>
14371437
<tr>
14381438
<td class="leftcell">
14391439
]
14401440
</td>
14411441
<td class="rightcell">
1442-
Increase Exposure
1442+
Increase Exposure Time
14431443
</td>
14441444
</tr>
14451445
<tr>

src/celestia/gtk/ui.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ const inline std::array<GtkActionEntry, 50> actionsPlain
6969
/* "Info Text" in radio actions */
7070
GtkActionEntry{ "AmbientLightMenu", nullptr, "_Ambient Light", nullptr, nullptr, nullptr },
7171
/* "Ambient Light" in radio actions */
72-
GtkActionEntry{ "IncreaseExposure", nullptr, "_Increase Exposure", "bracketright", nullptr, G_CALLBACK(actionIncreaseExposure) },
73-
GtkActionEntry{ "DecreaseExposure", nullptr, "_Decrease Exposure", "bracketleft", nullptr, G_CALLBACK(actionDecreaseExposure) },
72+
GtkActionEntry{ "IncreaseExposure", nullptr, "_Increase Exposure Time", "bracketright", nullptr, G_CALLBACK(actionIncreaseExposure) },
73+
GtkActionEntry{ "DecreaseExposure", nullptr, "_Decrease Exposure Time", "bracketleft", nullptr, G_CALLBACK(actionDecreaseExposure) },
7474

7575
GtkActionEntry{ "WindowMenu", nullptr, "_Window", nullptr, nullptr, nullptr },
7676
GtkActionEntry{ "ViewerSize", GTK_STOCK_ZOOM_FIT, "Set Window Size...", nullptr, nullptr, G_CALLBACK(actionViewerSize) },

src/celestia/win32/winpreferences.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ LoadPreferencesFromRegistry(AppPreferences& prefs)
216216
GetRegistryInt(key, TEXT("LocationFilter"), prefs.locationFilter);
217217
if (int orbitMask = 0; GetRegistryInt(key, TEXT("OrbitMask"), orbitMask))
218218
prefs.orbitMask = static_cast<BodyClassification>(orbitMask);
219-
GetRegistryFloat(key, TEXT("Exposure"), prefs.Exposure);
219+
GetRegistryFloat(key, TEXT("Exposure"), prefs.exposure);
220220
GetRegistryFloat(key, TEXT("AmbientLight"), prefs.ambientLight);
221221
GetRegistryFloat(key, TEXT("GalaxyLightGain"), prefs.galaxyLightGain);
222222
GetRegistryInt(key, TEXT("ShowLocalTime"), prefs.showLocalTime);

0 commit comments

Comments
 (0)