Skip to content
Snippets Groups Projects
Commit f84949fd authored by Dicson's avatar Dicson
Browse files

Fix missing import

parent b88db8a6
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,7 @@ if __name__ == '__main__':
import gtkgui_helpers
from common import gajim
from gtkgui_helpers import get_icon_pixmap
from gtkgui_helpers import get_gtk_builder
from common import helpers
import tooltips
......@@ -916,7 +917,7 @@ class HtmlTextView(gtk.TextView):
dialogs.AddNewContactWindow(self.account, jid)
def make_link_menu(self, event, kind, text):
xml = gtkgui_helpers.get_gtk_builder('chat_context_menu.ui')
xml = get_gtk_builder('chat_context_menu.ui')
menu = xml.get_object('chat_context_menu')
childs = menu.get_children()
if kind == 'url':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment