Source code for prsctrl_gui.ui.widgets.about
from ...resources import get_resource_path
from devctrl.gui.widgets import About
import logging
log = logging.getLogger(__name__)
[docs]
class AboutCpdctrlGui(About):
"""
Small about text with logo
"""
def __init__(self, parent=None):
img_path = get_resource_path("icons/logo.svg")
filepath = get_resource_path("small_about.md")
pkgs = ["cpdctrl_gui", "cpdctrl", "devctrl"]
super().__init__(img_path=img_path, about_md_path=filepath, pkg_versions=pkgs, parent=parent)