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 widgets/+wt/+abstract/BaseInternalDialog.m
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ function setup(obj)

% Outer dialog panel
obj.OuterPanel = uipanel(obj.OuterGrid);
obj.OuterPanel.Title = "Dialog Title";
obj.OuterPanel.Title = " ";
obj.OuterPanel.FontSize = 16;
obj.OuterPanel.FontWeight = "bold";
%obj.OuterPanel.BorderWidth = 1;
Expand Down
3 changes: 3 additions & 0 deletions widgets/+wt/+dialog/Login.m
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ function setup(obj)

function update(obj)

% Call superclass method
obj.update@wt.abstract.BaseInternalDialog();

% Check if Login button can be enabled
obj.updateButtonEnables();

Expand Down