undid unnecessary api visibility changes

pull/2807/head
Oliver looney 4 months ago
parent 7ce010d9ed
commit 02077db53e
No known key found for this signature in database

@ -240,7 +240,7 @@ fn set_terminal_title_to(new_terminal_title: String) {
fn get_new_terminal_title(inputs: &Vec<Input>) -> String {
let mut new_terminal_title = "bat: ".to_string();
for (index, input) in inputs.iter().enumerate() {
new_terminal_title += &input.description.name.to_string();
new_terminal_title += input.description().title();
if index < inputs.len() - 1 {
new_terminal_title += ", ";
}

@ -13,7 +13,7 @@ use crate::error::*;
/// This tells bat how to refer to the input.
#[derive(Clone)]
pub struct InputDescription {
pub name: String,
pub(crate) name: String,
/// The input title.
/// This replaces the name if provided.
@ -94,7 +94,7 @@ pub(crate) struct InputMetadata {
pub struct Input<'a> {
pub(crate) kind: InputKind<'a>,
pub(crate) metadata: InputMetadata,
pub description: InputDescription,
pub(crate) description: InputDescription,
}
pub(crate) enum OpenedInputKind {

Loading…
Cancel
Save