Nuke %PL - never used, not needed

This commit is contained in:
Bryan Ashby 2022-10-05 21:07:56 -06:00
parent 6710bf8c08
commit 1021226020
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
1 changed files with 0 additions and 16 deletions

View File

@ -33,7 +33,6 @@ MCIViewFactory.UserViewCodes = [
'ET',
'ME',
'MT',
'PL',
'BT',
'VM',
'HM',
@ -129,21 +128,6 @@ MCIViewFactory.prototype.createFromMCI = function (mci) {
view = new MultiLineEditTextView(options);
break;
// Pre-defined Label (Text View)
// :TODO: Currently no real point of PL -- @method replaces this pretty much... probably remove
case 'PL':
if (mci.args.length > 0) {
options.text = getPredefinedMCIValue(this.client, mci.args[0]);
if (options.text) {
setOption(1, 'textStyle');
setOption(2, 'justify');
setWidth(3);
view = new TextView(options);
}
}
break;
// Button
case 'BT':
if (mci.args.length > 0) {