Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/wtDeployVersion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.0
2.4.1
2 changes: 1 addition & 1 deletion deploy/wtPackageRelease.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

% Increment the last part of the version number in wtDeployVersion.txt for
% the next release
% wt.deploy.incrementVersionNumber();
wt.deploy.incrementVersionNumber();


%% Get paths
Expand Down
Binary file added release/Widgets Toolbox 2.4.1.mltbx
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<Info/>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<Info location="Widgets Toolbox 2.4.1.mltbx" type="File"/>
6 changes: 5 additions & 1 deletion widgets/+wt/ContextualView.m
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,11 @@ function setup(obj)

% Create panel
obj.Panel = uipanel(obj.Grid);
obj.Panel.BorderWidth = 2;

% Adjust the initial border width (R2022b and later)
if ~isMATLABReleaseOlderThan("R2022b")
obj.Panel.BorderWidth = 2;
end

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