diff --git a/deploy/wtDeployVersion.txt b/deploy/wtDeployVersion.txt
index 197c4d5..005119b 100644
--- a/deploy/wtDeployVersion.txt
+++ b/deploy/wtDeployVersion.txt
@@ -1 +1 @@
-2.4.0
+2.4.1
diff --git a/deploy/wtPackageRelease.m b/deploy/wtPackageRelease.m
index beecfb3..e02e184 100644
--- a/deploy/wtPackageRelease.m
+++ b/deploy/wtPackageRelease.m
@@ -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
diff --git a/release/Widgets Toolbox 2.4.1.mltbx b/release/Widgets Toolbox 2.4.1.mltbx
new file mode 100644
index 0000000..8698906
Binary files /dev/null and b/release/Widgets Toolbox 2.4.1.mltbx differ
diff --git a/resources/project/FVIFMHuse2VWlFgbqX2S_OQzxiU/I9xq4Yx7cMSnZMeh1S34wnZzj04d.xml b/resources/project/FVIFMHuse2VWlFgbqX2S_OQzxiU/I9xq4Yx7cMSnZMeh1S34wnZzj04d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/FVIFMHuse2VWlFgbqX2S_OQzxiU/I9xq4Yx7cMSnZMeh1S34wnZzj04d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/FVIFMHuse2VWlFgbqX2S_OQzxiU/I9xq4Yx7cMSnZMeh1S34wnZzj04p.xml b/resources/project/FVIFMHuse2VWlFgbqX2S_OQzxiU/I9xq4Yx7cMSnZMeh1S34wnZzj04p.xml
new file mode 100644
index 0000000..d097a65
--- /dev/null
+++ b/resources/project/FVIFMHuse2VWlFgbqX2S_OQzxiU/I9xq4Yx7cMSnZMeh1S34wnZzj04p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/widgets/+wt/ContextualView.m b/widgets/+wt/ContextualView.m
index c72997c..9e77d87 100644
--- a/widgets/+wt/ContextualView.m
+++ b/widgets/+wt/ContextualView.m
@@ -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]);