Skip to content

Commit

Permalink
glade fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lwindolf committed Apr 5, 2024
1 parent e312f8a commit 65a6ddb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
8 changes: 4 additions & 4 deletions glade/prefs.ui
Original file line number Diff line number Diff line change
Expand Up @@ -1574,7 +1574,7 @@
</packing>
</child>
<child>
<!-- n-columns=3 n-rows=5 -->
<!-- n-columns=3 n-rows=6 -->
<object class="GtkGrid" id="privacyPage">
<property name="visible">True</property>
<property name="can-focus">False</property>
Expand Down Expand Up @@ -1628,7 +1628,7 @@
</object>
<packing>
<property name="left-attach">0</property>
<property name="top-attach">2</property>
<property name="top-attach">3</property>
</packing>
</child>
<child>
Expand Down Expand Up @@ -1676,7 +1676,7 @@
</object>
<packing>
<property name="left-attach">0</property>
<property name="top-attach">3</property>
<property name="top-attach">4</property>
</packing>
</child>
<child>
Expand Down Expand Up @@ -1731,7 +1731,7 @@
</object>
<packing>
<property name="left-attach">0</property>
<property name="top-attach">4</property>
<property name="top-attach">5</property>
</packing>
</child>
<child>
Expand Down
7 changes: 6 additions & 1 deletion net.sf.liferea.gschema.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,12 @@
<key name="do-not-track" type="b">
<default>false</default>
<summary>Send "Do Not Track" header</summary>
<description>Configures wether the "DNT" header is to be sent. If enabled sends "DNT: 1", meaning Do Not Track.</description>
<description>Configures wether the "DNT" header is to be sent. If enabled sends "DNT: 1", meaning do not track user requests.</description>
</key>
<key name="do-not-sell" type="b">
<default>false</default>
<summary>Send "Do Not Sell" header</summary>
<description>Configures wether the "Sec-GPC" header is to be sent. If enabled sends "Sec-GPC: 1", meaning do not share or sell user information.</description>
</key>
<key name="list-view-column-order" type="as">
<default>[ 'state', 'favicon', 'headline', 'enclosure', 'date' ]</default>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/preferences_dialog.c
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ on_donottrackbtn_toggled (GtkToggleButton *button, gpointer user_data)
}

void
on_donotselltn_toggled (GtkToggleButton *button, gpointer user_data)
on_donotsellbtn_toggled (GtkToggleButton *button, gpointer user_data)
{
conf_set_bool_value (DO_NOT_SELL, gtk_toggle_button_get_active (button));
}
Expand Down

0 comments on commit 65a6ddb

Please sign in to comment.