8000 Make "Clear History" dialog taller by felipeerias · Pull Request #1857 · Igalia/wolvic · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Make "Clear History" dialog taller #1857

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 18 additions & 7 deletions app/src/main/res/layout/clear_history_dialog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,25 @@
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<com.igalia.wolvic.ui.views.settings.RadioGroupVSetting
android:id="@+id/clearHistoryRadio"
<com.igalia.wolvic.ui.views.CustomScrollView
android:id="@+id/scrollbar"
style="@style/customScrollViewStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
app:layout="@layout/setting_radio_group_v"
app:description="@string/history_clear_time_range"
app:options="@array/clear_cache_options"
app:values="@array/clear_cache_options_values" />
android:layout_marginBottom="10dp"
android:paddingStart="0dp"
android:paddingEnd="30dp">

<com.igalia.wolvic.ui.views.settings.RadioGroupVSetting
android:id="@+id/clearHistoryRadio"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/history_clear_time_range"
app:layout="@layout/setting_radio_group_v"
app:options="@array/clear_cache_options"
app:values="@array/clear_cache_options_values" />

</com.igalia.wolvic.ui.views.CustomScrollView>

</layout>
2 changes: 1 addition & 1 deletion app/src/main/res/values/dimen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@

<!-- General 2nd level settings dimensions -->
<dimen name="settings_dialog_width">600dp</dimen>
<dimen name="settings_dialog_height">360dp</dimen>
<dimen name="settings_dialog_height">400dp</dimen>

<!-- Privacy settings -->
<dimen name="privacy_options_height">490dp</dimen>
Expand Down
Loading
0