Skip to content

Commit 9c96f52

Browse files
committed
CSSTUDIO-3461 Simplify naming of configuration option.
1 parent cfcf40e commit 9c96f52

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

core/ui/src/main/java/org/phoebus/ui/Preferences.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ public class Preferences
9393
/** cache_hint_for_picture_and_symbol_widgets */
9494
@Preference public static String cache_hint_for_picture_and_symbol_widgets;
9595
@Preference public static boolean save_credentials;
96-
/** phoebus_documentation_path */
97-
@Preference public static String phoebus_documentation_location;
96+
/** documentation_location */
97+
@Preference public static String documentation_location;
9898

9999
static
100100
{

core/ui/src/main/java/org/phoebus/ui/help/OpenHelp.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ public Void call()
6262

6363
public static String determineHelpLocation()
6464
{
65-
if (!Preferences.phoebus_documentation_location.isEmpty()) {
66-
return Preferences.phoebus_documentation_location;
65+
if (!Preferences.documentation_location.isEmpty()) {
66+
return Preferences.documentation_location;
6767
}
6868

6969
final File phoenix_install = Locations.install();

core/ui/src/main/resources/phoebus_ui_preferences.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,4 @@ cache_hint_for_picture_and_symbol_widgets=
178178
save_credentials=false
179179

180180
# Location of the Phoebus documentation
181-
phoebus_documentation_location=
181+
documentation_location=

0 commit comments

Comments
 (0)