There was an error while loading. Please reload this page.
1 parent 3230476 commit c0a47edCopy full SHA for c0a47ed
1 file changed
widgets/+wt/SliderSpinner.m
@@ -1,10 +1,11 @@
1
classdef SliderSpinner < wt.abstract.BaseWidget & ...
2
wt.mixin.Enableable & ...
3
wt.mixin.FieldColorable & ...
4
- wt.mixin.FontStyled
+ wt.mixin.FontStyled & ...
5
+ wt.mixin.Tooltipable
6
% A slider and spinner combination
7
- % Copyright 2020-2025 The MathWorks Inc.
8
+ % Copyright 2020-2026 The MathWorks Inc.
9
10
11
%% Public properties
@@ -255,6 +256,7 @@ function setup(obj)
255
256
obj.BackgroundColorableComponents = obj.Grid;
257
obj.FontStyledComponents = [obj.Spinner, obj.Slider];
258
obj.EnableableComponents = [obj.Spinner, obj.Slider];
259
+ obj.TooltipableComponents = [obj.Spinner, obj.Slider];
260
obj.FieldColorableComponents = [obj.Spinner];
261
262
end %function
0 commit comments