SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
2 additions and
13 deletions
-
electrum/gui/qt/qrwindow.py
|
|
@ -23,23 +23,12 @@ |
|
|
|
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
|
|
|
# SOFTWARE. |
|
|
|
|
|
|
|
import platform |
|
|
|
|
|
|
|
from PyQt5.QtCore import Qt |
|
|
|
from PyQt5.QtGui import * |
|
|
|
from PyQt5.QtWidgets import QHBoxLayout, QVBoxLayout, QLabel, QWidget |
|
|
|
from PyQt5.QtWidgets import QHBoxLayout, QWidget |
|
|
|
|
|
|
|
from .qrcodewidget import QRCodeWidget |
|
|
|
from electrum.i18n import _ |
|
|
|
|
|
|
|
if platform.system() == 'Windows': |
|
|
|
MONOSPACE_FONT = 'Lucida Console' |
|
|
|
elif platform.system() == 'Darwin': |
|
|
|
MONOSPACE_FONT = 'Monaco' |
|
|
|
else: |
|
|
|
MONOSPACE_FONT = 'monospace' |
|
|
|
|
|
|
|
column_index = 4 |
|
|
|
from electrum.i18n import _ |
|
|
|
|
|
|
|
|
|
|
|
class QR_Window(QWidget): |
|
|
|