[postr] Allow to set privacy to 'Friends olny'



commit 2e988b0445872cf5d614e3308e0cbee4fd27e0ef
Author: Gottfried Haider <gottfried haider gmail com>
Date:   Tue Oct 3 20:03:24 2017 -0300

    Allow to set privacy to 'Friends olny'
    
    There might by some photos are is ok to share with friends,
    embarrasing to share with parents :-)

 src/PrivacyCombo.py |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/src/PrivacyCombo.py b/src/PrivacyCombo.py
index 44051c5..83c5dde 100644
--- a/src/PrivacyCombo.py
+++ b/src/PrivacyCombo.py
@@ -26,6 +26,7 @@ class PrivacyCombo(Gtk.ComboBox):
         model = Gtk.ListStore(GObject.TYPE_STRING, GObject.TYPE_BOOLEAN, GObject.TYPE_BOOLEAN, 
GObject.TYPE_BOOLEAN)
         model.append(["Public", True, False, False])
         model.append(["Family Only", False, True, False])
+        model.append(["Friends Only", 1, False, 2, False, 3, True])
         model.append(["Friends and Family Only", False, True, True])
         model.append(["Private", False, False, False])
         self.model = model


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]