Merge pull request #432 from Mohamed00/shortcut

Fixes
This commit is contained in:
Manuel Cortez 2021-11-10 12:30:08 -06:00 committed by GitHub
commit a6964a1bb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
import url_shortener, re
import re
import output
import config
import logging

View File

@ -57,7 +57,7 @@ class tweet(wx.Dialog):
mainBox.Add(btn_sizer_1, 1, wx.EXPAND, 0)
self.add = wx.Button(panel, wx.ID_ANY, _("A&dd..."))
btn_sizer_1.Add(self.add, 0, 0, 0)
self.add_tweet = wx.Button(panel, wx.ID_ANY, _("Add tweet"))
self.add_tweet = wx.Button(panel, wx.ID_ANY, _("Add t&weet"))
self.add_tweet.Enable(thread_mode)
btn_sizer_1.Add(self.add_tweet, 0, 0, 0)
self.add_audio = wx.Button(panel, wx.ID_ANY, _("&Attach audio..."))