From d14e4048aae60f23e0a5653d2ce5e86bfbce9554 Mon Sep 17 00:00:00 2001 From: Travis McLane Date: Wed, 10 May 2023 10:53:24 -0500 Subject: [PATCH] [dialogs] remove default title without this removal a user would have to call `SetTitle("")` in order to erase the default if they desire a title-less dialog. --- v3/pkg/application/dialogs.go | 1 - 1 file changed, 1 deletion(-) diff --git a/v3/pkg/application/dialogs.go b/v3/pkg/application/dialogs.go index 6ca468112..dba5b3bac 100644 --- a/v3/pkg/application/dialogs.go +++ b/v3/pkg/application/dialogs.go @@ -85,7 +85,6 @@ func newMessageDialog(dialogType DialogType) *MessageDialog { return &MessageDialog{ MessageDialogOptions: MessageDialogOptions{ DialogType: dialogType, - Title: defaultTitles[dialogType], }, impl: nil, }