~phill-ridout/openlp/display_fixes

« back to all changes in this revision

Viewing changes to openlp/core/ui/icons.py

  • Committer: Raoul Snyman
  • Date: 2019-02-14 07:04:30 UTC
  • mfrom: (2766.3.118 webengine-migrate)
  • Revision ID: raoul@snyman.info-20190214070430-nxe1vaeaapq3ult5
Migration from WebKit to Webengine. Also introduced reveal.js for slide rendering, new screen setup dialogs and many other changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
The :mod:`languages` module provides a list of icons.
24
24
"""
25
25
import logging
 
26
 
26
27
import qtawesome as qta
27
 
 
28
28
from PyQt5 import QtGui, QtWidgets
29
29
 
30
30
from openlp.core.common.applocation import AppLocation
31
31
from openlp.core.lib import build_icon
32
32
 
 
33
 
33
34
log = logging.getLogger(__name__)
34
35
 
35
36