SolarFM/src/versions/solarfm-0.0.1/SolarFM/solarfm/core/mixins/show_hide_mixin.py

14 lines
254 B
Python
Raw Normal View History

# Python imports
# Gtk imports
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
# Application imports
class ShowHideMixin:
2021-11-28 06:40:47 +00:00
def show_messages_popup(self, type, text, seconds=None):
self.message_popup_widget.popup()