Skip to content

Commit

Permalink
changed label back to my global static text
Browse files Browse the repository at this point in the history
  • Loading branch information
kiddac committed May 29, 2024
1 parent d99a65f commit 38db9ce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTROL/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: enigma2-plugin-extensions-xstreamity
Version: 4.49-20240529
Version: 4.49-20240530
Section: misc
Priority: optional
Architecture: all
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ def __init__(self, session):
self.setup_title = _("Live Categories")
self.main_title = _("Live Streams")

self["main_title"] = Label(self.main_title)
self["main_title"] = StaticText(self.main_title)
self.main_list = [] # displayed list
self["main_list"] = List(self.main_list, enableWrapAround=True)

self["x_title"] = Label()
self["x_title"] = StaticText()
self["x_description"] = StaticText()

self["picon"] = Pixmap()
Expand All @@ -181,8 +181,8 @@ def __init__(self, session):
self.xmltv_channel_list = []

# pagination variables
self["page"] = Label("")
self["listposition"] = Label("")
self["page"] = StaticText("")
self["listposition"] = StaticText("")
self.itemsperpage = 10

# self.lastviewed_url = ""
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.49-20240529
4.49-20240530

0 comments on commit 38db9ce

Please sign in to comment.