diff options
author | mathieui <mathieui@mathieui.net> | 2015-02-09 22:13:11 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-02-09 22:35:41 +0100 |
commit | 9141e0c4d316b877cb4e71b5fa7255c40248e867 (patch) | |
tree | 601b03182ac08b481a3c3f775ba7750c5a8b1288 /src/windows/__init__.py | |
parent | 2da4474d6a4ee2fd7e4761701043f6cb545f1884 (diff) | |
download | poezio-9141e0c4d316b877cb4e71b5fa7255c40248e867.tar.gz poezio-9141e0c4d316b877cb4e71b5fa7255c40248e867.tar.bz2 poezio-9141e0c4d316b877cb4e71b5fa7255c40248e867.tar.xz poezio-9141e0c4d316b877cb4e71b5fa7255c40248e867.zip |
Add a bookmarkstab (fixes #2004)
now we can edit stuff, save or cancel those modifications, and change
the chose storage easily
Diffstat (limited to 'src/windows/__init__.py')
-rw-r--r-- | src/windows/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/windows/__init__.py b/src/windows/__init__.py index f9ca7108..5ec73961 100644 --- a/src/windows/__init__.py +++ b/src/windows/__init__.py @@ -5,10 +5,11 @@ used to display information on the screen from . base_wins import Win from . data_forms import FormWin +from . bookmark_forms import BookmarksWin from . info_bar import GlobalInfoBar, VerticalGlobalInfoBar from . info_wins import InfoWin, XMLInfoWin, PrivateInfoWin, MucListInfoWin, \ ConversationInfoWin, DynamicConversationInfoWin, MucInfoWin, \ - ConversationStatusMessageWin + ConversationStatusMessageWin, BookmarksInfoWin from . input_placeholders import HelpText, YesNoInput from . inputs import Input, HistoryInput, MessageInput, CommandInput from . list import ListWin, ColumnHeaderWin |