blob: ec0a6dbef6d994b818c0520594c7a3e6a73230f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- coding: utf-8 -*-
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
from gi.repository import Gdk
def show_help():
Gtk.show_uri(None, "help:mate-invest-applet", Gdk.CURRENT_TIME)
def show_help_section(id):
Gtk.show_uri(None, "help:mate-invest-applet/%s" % id, Gdk.CURRENT_TIME)
|