mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 01:34:16 +03:00
Update picker footer button style
Co-Authored-By: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com>
This commit is contained in:
parent
2ac485a6ec
commit
001e848393
@ -1,8 +1,10 @@
|
||||
use anyhow::{anyhow, bail, Result};
|
||||
use fuzzy::{StringMatch, StringMatchCandidate};
|
||||
use gpui::{
|
||||
actions, elements::*, platform::MouseButton, AppContext, MouseState, Task, ViewContext,
|
||||
ViewHandle,
|
||||
actions,
|
||||
elements::*,
|
||||
platform::{CursorStyle, MouseButton},
|
||||
AppContext, MouseState, Task, ViewContext, ViewHandle,
|
||||
};
|
||||
use picker::{Picker, PickerDelegate, PickerEvent};
|
||||
use std::{ops::Not, sync::Arc};
|
||||
@ -290,6 +292,7 @@ impl PickerDelegate for BranchListDelegate {
|
||||
.contained()
|
||||
.with_style(style.container)
|
||||
})
|
||||
.with_cursor_style(CursorStyle::PointingHand)
|
||||
.on_down(MouseButton::Left, |_, _, cx| {
|
||||
cx.spawn(|picker, mut cx| async move {
|
||||
picker.update(&mut cx, |this, cx| {
|
||||
|
@ -121,7 +121,7 @@ export default function picker(): any {
|
||||
},
|
||||
footer: interactive({
|
||||
base: {
|
||||
text: text(theme.lowest, "sans", "variant", { size: "xs" }),
|
||||
text: text(theme.lowest, "sans", "base", { size: "xs" }),
|
||||
padding: {
|
||||
bottom: 4,
|
||||
left: 12,
|
||||
|
Loading…
Reference in New Issue
Block a user