From ef24275f7c847ea597df0d634b657bf298e34aab Mon Sep 17 00:00:00 2001 From: Antoine D Date: Fri, 9 Aug 2013 09:36:02 +0200 Subject: [PATCH] Make contacts visible in new aspect unchecked by default, close #4343 --- Changelog.md | 1 + app/assets/stylesheets/application.css.sass | 1 - app/views/aspects/new.haml | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 51633a519..ec611b32b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -42,6 +42,7 @@ * OpenGraph support [#4215](https://github.com/diaspora/diaspora/pull/4215) * Added Wordpress service ability for posts. [#4321](https://github.com/diaspora/diaspora/pull/4321) * Implement tag search autocomplete in header search box [#4169](https://github.com/diaspora/diaspora/issues/4169) +* Uncheck 'make contacts visible to each other' by default when adding new aspect. [#4343](https://github.com/diaspora/diaspora/issues/4343) # 0.1.1.0 diff --git a/app/assets/stylesheets/application.css.sass b/app/assets/stylesheets/application.css.sass index 1a0103ff1..492a3f59f 100644 --- a/app/assets/stylesheets/application.css.sass +++ b/app/assets/stylesheets/application.css.sass @@ -689,7 +689,6 @@ form#update_profile_form p.checkbox_select :top 0 form p.checkbox_select - :width 75% label :left 25px :top 3px diff --git a/app/views/aspects/new.haml b/app/views/aspects/new.haml index 176629816..9fafc9331 100644 --- a/app/views/aspects/new.haml +++ b/app/views/aspects/new.haml @@ -17,7 +17,7 @@ %p.checkbox_select = aspect.label :contacts_visible, t('aspects.edit.make_aspect_list_visible') - = aspect.check_box :contacts_visible, :default => true + = aspect.check_box :contacts_visible, :checked => false %br