Browse Source

A HLBindingActionInputWidget is not a HLWidget.

Herby Vojčík 4 years ago
parent
commit
8d6e5075a3
2 changed files with 3 additions and 3 deletions
  1. 2 2
      src/Helios-KeyBindings.js
  2. 1 1
      src/Helios-KeyBindings.st

+ 2 - 2
src/Helios-KeyBindings.js

@@ -1,4 +1,4 @@
-define(["amber/boot", "require", "amber/core/Kernel-Objects", "helios/Helios-Core"], function($boot,requirejs){"use strict";
+define(["amber/boot", "require", "amber/core/Kernel-Objects", "amber/web/Web", "helios/Helios-Core"], function($boot,requirejs){"use strict";
 var $core=$boot.api,nil=$boot.nilAsValue,$nil=$boot.nilAsReceiver,$recv=$boot.asReceiver,$globals=$boot.globals;
 var $pkg = $core.addPackage("Helios-KeyBindings");
 $pkg.innerEval = function (expr) { return eval(expr); };
@@ -895,7 +895,7 @@ $globals.HLBindingGroup);
 
 
 
-$core.addClass("HLBindingActionInputWidget", $globals.HLWidget, ["input", "callback", "status", "wrapper", "ghostText", "message", "inputCompletion", "defaultValue", "messageTag"], "Helios-KeyBindings");
+$core.addClass("HLBindingActionInputWidget", $globals.Widget, ["input", "callback", "status", "wrapper", "ghostText", "message", "inputCompletion", "defaultValue", "messageTag"], "Helios-KeyBindings");
 //>>excludeStart("ide", pragmas.excludeIdeData);
 $globals.HLBindingActionInputWidget.comment="My instances are built when a `HLBindingAction` that requires user input is applied.";
 //>>excludeEnd("ide");

+ 1 - 1
src/Helios-KeyBindings.st

@@ -218,7 +218,7 @@ isActive
 	^ self activeBindings notEmpty
 ! !
 
-HLWidget subclass: #HLBindingActionInputWidget
+Widget subclass: #HLBindingActionInputWidget
 	slots: {#input. #callback. #status. #wrapper. #ghostText. #message. #inputCompletion. #defaultValue. #messageTag}
 	package: 'Helios-KeyBindings'!
 !HLBindingActionInputWidget commentStamp!