~sam92/openlp/multiple-songbooks

« back to all changes in this revision

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

  • Committer: Samuel Mehrbrodt
  • Date: 2016-01-08 23:05:43 UTC
  • mfrom: (2587.1.6 openlp)
  • Revision ID: s.mehrbrodt@gmail.com-20160108230543-eyzcimqcz9dlnmcs
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
Base Tags cannot be changed.
26
26
"""
27
27
 
28
 
from PyQt5 import QtWidgets
 
28
from PyQt5 import QtCore, QtWidgets
29
29
 
30
30
from openlp.core.common import translate
31
31
from openlp.core.lib import FormattingTags
51
51
        """
52
52
        Constructor
53
53
        """
54
 
        super(FormattingTagForm, self).__init__(parent)
 
54
        super(FormattingTagForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint
 
55
                | QtCore.Qt.WindowTitleHint)
55
56
        self.setupUi(self)
56
57
        self._setup()
57
58