@ -30,7 +30,6 @@ import traceback
import json
import json
import shutil
import shutil
import weakref
import weakref
import webbrowser
import csv
import csv
from decimal import Decimal
from decimal import Decimal
import base64
import base64
@ -85,7 +84,7 @@ from .util import (read_QIcon, ColorScheme, text_dialog, icon_path, WaitingDialo
OkButton , InfoButton , WWLabel , TaskThread , CancelButton ,
OkButton , InfoButton , WWLabel , TaskThread , CancelButton ,
CloseButton , HelpButton , MessageBoxMixin , EnterButton , expiration_values ,
CloseButton , HelpButton , MessageBoxMixin , EnterButton , expiration_values ,
ButtonsLineEdit , CopyCloseButton , import_meta_gui , export_meta_gui ,
ButtonsLineEdit , CopyCloseButton , import_meta_gui , export_meta_gui ,
filename_field , address_field , char_width_in_lineedit )
filename_field , address_field , char_width_in_lineedit , webopen )
from . installwizard import WIF_HELP_TEXT
from . installwizard import WIF_HELP_TEXT
from . history_list import HistoryList , HistoryModel
from . history_list import HistoryList , HistoryModel
from . update_checker import UpdateCheck , UpdateCheckThread
from . update_checker import UpdateCheck , UpdateCheckThread
@ -633,9 +632,9 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
help_menu = menubar . addMenu ( _ ( " &Help " ) )
help_menu = menubar . addMenu ( _ ( " &Help " ) )
help_menu . addAction ( _ ( " &About " ) , self . show_about )
help_menu . addAction ( _ ( " &About " ) , self . show_about )
help_menu . addAction ( _ ( " &Check for updates " ) , self . show_update_check )
help_menu . addAction ( _ ( " &Check for updates " ) , self . show_update_check )
help_menu . addAction ( _ ( " &Official website " ) , lambda : webbrowser . open ( " https://electrum.org " ) )
help_menu . addAction ( _ ( " &Official website " ) , lambda : webopen ( " https://electrum.org " ) )
help_menu . addSeparator ( )
help_menu . addSeparator ( )
help_menu . addAction ( _ ( " &Documentation " ) , lambda : webbrowser . open ( " http://docs.electrum.org/ " ) ) . setShortcut ( QKeySequence . HelpContents )
help_menu . addAction ( _ ( " &Documentation " ) , lambda : webopen ( " http://docs.electrum.org/ " ) ) . setShortcut ( QKeySequence . HelpContents )
help_menu . addAction ( _ ( " &Report Bug " ) , self . show_report_bug )
help_menu . addAction ( _ ( " &Report Bug " ) , self . show_report_bug )
help_menu . addSeparator ( )
help_menu . addSeparator ( )
help_menu . addAction ( _ ( " &Donate to server " ) , self . donate_to_server )
help_menu . addAction ( _ ( " &Donate to server " ) , self . donate_to_server )