Skip to content

Commit

Permalink
Add the "devel" CSS class for development builds
Browse files Browse the repository at this point in the history
The main window should be styled to reflect that it is a development
build.

Helps: endlessm/endless-key-flatpak#51
  • Loading branch information
dylanmccall committed May 4, 2024
1 parent a8d277a commit 0c2f7d7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/kolibri_gnome/kolibri_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from gi.repository import GObject
from gi.repository import Gtk
from gi.repository import WebKit
from kolibri_app.config import BUILD_PROFILE

from .kolibri_context import KolibriContext
from .kolibri_webview import KolibriWebView
Expand Down Expand Up @@ -72,6 +73,9 @@ def __init__(

self.set_default_size(DEFAULT_WIDTH, DEFAULT_HEIGHT)

if BUILD_PROFILE == "development":
self.add_css_class("devel")

content_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
self.set_content(content_box)

Expand Down

0 comments on commit 0c2f7d7

Please sign in to comment.