From 1021226020f2fa961dafdb5cc05a377ac22ed487 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Wed, 5 Oct 2022 21:07:56 -0600 Subject: [PATCH] Nuke %PL - never used, not needed --- core/mci_view_factory.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/core/mci_view_factory.js b/core/mci_view_factory.js index b628b56e..de869b2d 100644 --- a/core/mci_view_factory.js +++ b/core/mci_view_factory.js @@ -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) {