From 8c10d7d6a5542cf05b967010de0e5e0b78ca8a36 Mon Sep 17 00:00:00 2001 From: DYefremov Date: Sat, 9 Feb 2019 12:43:27 +0300 Subject: [PATCH] added columns for bouquets model --- app/ui/uicommons.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/ui/uicommons.py b/app/ui/uicommons.py index 2698762d..ea6f46b4 100644 --- a/app/ui/uicommons.py +++ b/app/ui/uicommons.py @@ -129,6 +129,11 @@ class Column(IntEnum): FAV_PICON = 8 FAV_TOOLTIP = 9 FAV_BACKGROUND = 10 + # bouquets view + BQ_NAME = 0 + BQ_LOCKED = 1 + BQ_HIDDEN = 2 + BQ_TYPE = 3 def __index__(self): """ Overridden to get the index in slices directly """