Skip to content

Commit

Permalink
Also require Gdk version
Browse files Browse the repository at this point in the history
Closes #635
  • Loading branch information
FichteFoll committed Aug 24, 2022
1 parent 3d3ff44 commit 16c1551
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions trackma/ui/gtk/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from gi import require_version # nopep8
require_version('Gtk', '3.0') # nopep8
from gi import require_version

from trackma import utils
from trackma.ui.gtk.window import TrackmaWindow
from gi.repository import GLib, Gio, Gtk
require_version('Gtk', '3.0')
require_version('Gdk', '3.0')

from trackma import utils # noqa: E402
from trackma.ui.gtk.window import TrackmaWindow # noqa: E402
from gi.repository import GLib, Gio, Gtk # noqa: E402


class TrackmaApplication(Gtk.Application):
Expand Down

0 comments on commit 16c1551

Please sign in to comment.