-
Notifications
You must be signed in to change notification settings - Fork 2
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
More tooltips #158
More tooltips #158
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/components/datafile/item.tsx
Outdated
title: "Delete Sample Dependency", | ||
centered: true, | ||
children: ( | ||
<Text size="sm"> | ||
Are you sure you want to delete the sample dependency { `"${dataFile.fileName}"` } from the runner? | ||
</Text> | ||
), | ||
labels: { confirm: "Delete", cancel: "Cancel" }, | ||
confirmProps: { color: "red" }, | ||
onConfirm: () => onDelete(dataFile) | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should rename Sample Dependency
to something else.. Audio File
?
Both here and in the left menu to get to the sample dep page.
They're not actually "Dependencies".. they are simply files that can be applied to a buffer (aka dataref) mapping.
…button with label depending on screen size
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this looks great!
This introduces more tooltips across the whole UI, adjusts the help link to go straight to the Web Interface page and uses a diff icon for patcher instance unloading.