Skip to content
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

Fix rewards modal overflows + make it more theme friendly #1877

Merged
merged 1 commit into from Jul 26, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion atomic_defi_design/Dex/Addressbook/Main.qml
Expand Up @@ -121,6 +121,7 @@ Item
}
}

// Contact table content
Dex.DefaultListView
{
id: contactTable
Expand Down Expand Up @@ -268,7 +269,7 @@ Item
{
id: addressList

visible: model.rowCount() > 0
visible: addressList.model.rowCount() > 0
x: 30
model: modelData.proxyFilter
width: parent.width - 40
Expand Down