Skip to content

Commit e02fc41

Browse files
authored
Merge pull request #134 from mathworks/package-release-2.4.1
Package release 2.4.1
2 parents e88f4df + 8db0d98 commit e02fc41

File tree

6 files changed

+11
-3
lines changed

6 files changed

+11
-3
lines changed

deploy/wtDeployVersion.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.0
1+
2.4.1

deploy/wtPackageRelease.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
% Increment the last part of the version number in wtDeployVersion.txt for
99
% the next release
10-
% wt.deploy.incrementVersionNumber();
10+
wt.deploy.incrementVersionNumber();
1111

1212

1313
%% Get paths
2.82 MB
Binary file not shown.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Info/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Info location="Widgets Toolbox 2.4.1.mltbx" type="File"/>

widgets/+wt/ContextualView.m

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,11 @@ function setup(obj)
281281

282282
% Create panel
283283
obj.Panel = uipanel(obj.Grid);
284-
obj.Panel.BorderWidth = 2;
284+
285+
% Adjust the initial border width (R2022b and later)
286+
if ~isMATLABReleaseOlderThan("R2022b")
287+
obj.Panel.BorderWidth = 2;
288+
end
285289

286290
% Grid Layout to place the contents
287291
obj.ContentGrid = uigridlayout(obj.Panel,[1 1]);

0 commit comments

Comments
 (0)