@@ -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,