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