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