[postr/postr-0-13] Allow to set privacy to 'Friends olny'
- From: Germán Poo-Caamaño <gpoo src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [postr/postr-0-13] Allow to set privacy to 'Friends olny'
- Date: Tue, 3 Oct 2017 23:06:16 +0000 (UTC)
commit 8886ecbe59b44e5a6ec013090cbf0e1ef878dc09
Author: Gottfried Haider <gottfried haider gmail com>
Date: Tue Oct 3 19:58:44 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 79c79da..cbab8a9 100644
--- a/src/PrivacyCombo.py
+++ b/src/PrivacyCombo.py
@@ -24,6 +24,7 @@ class PrivacyCombo(gtk.ComboBox):
model = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_BOOLEAN, gobject.TYPE_BOOLEAN,
gobject.TYPE_BOOLEAN)
model.set(model.append(), 0, "Public", 1, True, 2, False, 3, False)
model.set(model.append(), 0, "Family Only", 1, False, 2, True, 3, False)
+ model.set(model.append(), 0, "Friends Only", 1, False, 2, False, 3, True)
model.set(model.append(), 0, "Friends and Family Only", 1, False, 2, True, 3, True)
model.set(model.append(), 0, "Private", 1, False, 2, False, 3, False)
self.model = model
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]