summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/gui/Console.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/gui/Console.java')
-rw-r--r--source/com/c2kernel/gui/Console.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/com/c2kernel/gui/Console.java b/source/com/c2kernel/gui/Console.java
index a16e6f6..3427f82 100644
--- a/source/com/c2kernel/gui/Console.java
+++ b/source/com/c2kernel/gui/Console.java
@@ -130,7 +130,9 @@ public class Console extends JFrame {
getContentPane().add(inputBox);
try {
- Properties utilProps = FileStringUtility.loadConfigFile( Resource.getDomainResourceURL("ScriptUtils.conf").toString());
+ // TODO: merge module script utilities together and prepend with namespace
+ Properties utilProps = FileStringUtility.loadConfigFile( Resource.findTextResource("ScriptUtils.conf") );
+
Box utilBox = Box.createHorizontalBox();
for (Object name2 : utilProps.keySet()) {
String name = (String) name2;