File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -515,10 +515,17 @@ def search_messages(self, text: str) -> None:
515
515
516
516
def save_draft_confirmation_popup (self , draft : Composition ) -> None :
517
517
question = urwid .Text (
518
- "Save this message as a draft? (This will overwrite the existing draft.)"
518
+ (
519
+ "bold" ,
520
+ "Save this message as a draft? "
521
+ "(This will overwrite the existing draft.)" ,
522
+ ),
523
+ "center" ,
519
524
)
520
525
save_draft = partial (self .model .save_draft , draft )
521
- self .loop .widget = PopUpConfirmationView (self , question , save_draft )
526
+ self .loop .widget = PopUpConfirmationView (
527
+ self , question , save_draft , location = "center"
528
+ )
522
529
523
530
def stream_muting_confirmation_popup (
524
531
self , stream_id : int , stream_name : str
You can’t perform that action at this time.
0 commit comments