mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
[Cookies] Renamed Match Domain exactly to Filter 3rd party cookies
Closes #1277 [ci skip]
This commit is contained in:
parent
7469aced65
commit
61c1b8d8a1
@ -71,7 +71,7 @@ CookieManager::CookieManager(QWidget* parent)
|
|||||||
ui->deleteCookiesOnClose->setEnabled(false);
|
ui->deleteCookiesOnClose->setEnabled(false);
|
||||||
}
|
}
|
||||||
ui->deleteCookiesOnClose->setChecked(settings.value("deleteCookiesOnClose", false).toBool());
|
ui->deleteCookiesOnClose->setChecked(settings.value("deleteCookiesOnClose", false).toBool());
|
||||||
ui->matchExactly->setChecked(settings.value("allowCookiesFromVisitedDomainOnly", false).toBool());
|
ui->filter3rdParty->setChecked(settings.value("allowCookiesFromVisitedDomainOnly", false).toBool());
|
||||||
ui->filterTracking->setChecked(settings.value("filterTrackingCookie", false).toBool());
|
ui->filterTracking->setChecked(settings.value("filterTrackingCookie", false).toBool());
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
|
|
||||||
@ -327,7 +327,7 @@ void CookieManager::closeEvent(QCloseEvent* e)
|
|||||||
settings.beginGroup("Cookie-Settings");
|
settings.beginGroup("Cookie-Settings");
|
||||||
settings.setValue("allowCookies", ui->saveCookies->isChecked());
|
settings.setValue("allowCookies", ui->saveCookies->isChecked());
|
||||||
settings.setValue("deleteCookiesOnClose", ui->deleteCookiesOnClose->isChecked());
|
settings.setValue("deleteCookiesOnClose", ui->deleteCookiesOnClose->isChecked());
|
||||||
settings.setValue("allowCookiesFromVisitedDomainOnly", ui->matchExactly->isChecked());
|
settings.setValue("allowCookiesFromVisitedDomainOnly", ui->filter3rdParty->isChecked());
|
||||||
settings.setValue("filterTrackingCookie", ui->filterTracking->isChecked());
|
settings.setValue("filterTrackingCookie", ui->filterTracking->isChecked());
|
||||||
settings.setValue("whitelist", whitelist);
|
settings.setValue("whitelist", whitelist);
|
||||||
settings.setValue("blacklist", blacklist);
|
settings.setValue("blacklist", blacklist);
|
||||||
|
@ -431,9 +431,9 @@
|
|||||||
</spacer>
|
</spacer>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="1" colspan="2">
|
<item row="3" column="1" colspan="2">
|
||||||
<widget class="QCheckBox" name="matchExactly">
|
<widget class="QCheckBox" name="filter3rdParty">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Match domain exactly</string>
|
<string>Filter 3rd party cookies</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -460,7 +460,7 @@
|
|||||||
<item row="5" column="1" colspan="3">
|
<item row="5" column="1" colspan="3">
|
||||||
<widget class="QLabel" name="label_19">
|
<widget class="QLabel" name="label_19">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable these options first!</string>
|
<string><b>Warning:</b> Filter 3rd party and tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable these options first!</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="wordWrap">
|
<property name="wordWrap">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user