|
| 1 | +diff --git a/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/refactoring/ui/ChangeMethodParameters.html b/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/refactoring/ui/ChangeMethodParameters.html |
| 2 | +index 0f289cb1485f..bb4fea5e3551 100644 |
| 3 | +--- a/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/refactoring/ui/ChangeMethodParameters.html |
| 4 | ++++ b/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/refactoring/ui/ChangeMethodParameters.html |
| 5 | +@@ -26,7 +26,6 @@ |
| 6 | + <meta http-equiv="Content-Security-Policy" content="default-src http: 'unsafe-inline' 'unsafe-eval'"> |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 8 | + <link rel="stylesheet" href="refactoring.css"> |
| 9 | +- <link rel="stylesheet" href="codicon.css"> |
| 10 | + <title>Refactor: Change Method Parameters...</title> |
| 11 | + </head> |
| 12 | + |
| 13 | +@@ -57,13 +56,16 @@ |
| 14 | + <div class="flex row"> |
| 15 | + <input type="text" data-bind="textInput: type" class="flex-grow"> |
| 16 | + <input type="text" data-bind="textInput: name" class="flex-grow"> |
| 17 | +- <button class="action-button codicon codicon-arrow-up" data-bind="click: $root.moveUpParameter"></button> |
| 18 | +- <button class="action-button codicon codicon-arrow-down" data-bind="click: $root.moveDownParameter"></button> |
| 19 | +- <button class="action-button codicon codicon-trash" data-bind="click: $root.removeParameter"></button> |
| 20 | ++ <button class="action-button" title="Move up" data-bind="click: $root.moveUpParameter">▲</button> |
| 21 | ++ <button class="action-button" title="Move down" data-bind="click: $root.moveDownParameter">▼</button> |
| 22 | ++ <button class="action-button" title="Remove parameter" data-bind="click: $root.removeParameter">✖</button> |
| 23 | + </div> |
| 24 | + </div> |
| 25 | ++ |
| 26 | + <div class="add-param flex"> |
| 27 | +- <button id="addParam" class="silent-button codicon codicon-add full-width flex-grow" data-bind="click: addParameter"><span class="button-text vscode-font"> Add Parameter</span></button> |
| 28 | ++ <button id="addParam" class="silent-button flex-grow" data-bind="click: addParameter"> |
| 29 | ++ ✚ <span class="button-text vscode-font">Add Parameter</span> |
| 30 | ++ </button> |
| 31 | + </div> |
| 32 | + <div class="section"> |
| 33 | + <label>Signature preview:</label> |
0 commit comments