Skip to content

Commit 9d684d7

Browse files
committed
Resolve conflicts
1 parent 93978f6 commit 9d684d7

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

crates/editor/src/editor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ use util::{maybe, post_inc, RangeExt, ResultExt, TryFutureExt};
127127
use workspace::{
128128
item::{TabBarPlacement, TabsSettings},
129129
searchable::SearchEvent,
130-
ItemNavHistory, Pane, SplitDirection, Toast, ViewId, Workspace, WorkspaceId,
130+
ItemNavHistory, SplitDirection, Toast, ViewId, Workspace, WorkspaceId,
131131
};
132132

133133
use crate::hover_links::find_url;

crates/settings/src/settings.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ use util::asset_str;
99
pub use keymap_file::KeymapFile;
1010
pub use settings_file::*;
1111
pub use settings_store::{Settings, SettingsJsonSchemaParams, SettingsLocation, SettingsStore};
12-
pub use tab_bar::TabBarPlacement;
1312

1413
#[derive(RustEmbed)]
1514
#[folder = "../../assets"]

crates/ui/src/components/tab_bar.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ impl ParentElement for TabBar {
106106

107107
impl RenderOnce for TabBar {
108108
fn render(self, cx: &mut WindowContext) -> impl IntoElement {
109-
const HEIGHT_IN_REMS: f32 = 29. / 16.;
110-
111109
let placement_top = self.placement == TabBarPlacement::Top;
112110
let placement_bottom = self.placement == TabBarPlacement::Bottom;
113111

0 commit comments

Comments
 (0)