We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f2935 commit 5418195Copy full SHA for 5418195
zulipterminal/core.py
@@ -515,10 +515,17 @@ def search_messages(self, text: str) -> None:
515
516
def save_draft_confirmation_popup(self, draft: Composition) -> None:
517
question = urwid.Text(
518
- "Save this message as a draft? (This will overwrite the existing draft.)"
+ (
519
+ "bold",
520
+ "Save this message as a draft? "
521
+ "(This will overwrite the existing draft.)",
522
+ ),
523
+ "center",
524
)
525
save_draft = partial(self.model.save_draft, draft)
- self.loop.widget = PopUpConfirmationView(self, question, save_draft)
526
+ self.loop.widget = PopUpConfirmationView(
527
+ self, question, save_draft, location="center"
528
+ )
529
530
def stream_muting_confirmation_popup(
531
self, stream_id: int, stream_name: str
0 commit comments