Skip to content

Commit 1878eba

Browse files
committed
changed: tab names
1 parent 17a3514 commit 1878eba

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/app/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ impl App {
5050
self.selected_tab = self.selected_tab.prev();
5151
}
5252

53+
/// Returns the connection currently selected in the Log tab.
5354
pub fn log_conn(&self) -> (usize, Connection) {
5455
(
5556
self.log_conn_idx,

src/app/selected_tab.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ use strum::{Display, EnumIter, FromRepr};
44
#[derive(Default, Copy, Clone, Display, FromRepr, EnumIter, PartialEq, Eq)]
55
pub enum SelectedTab {
66
#[default]
7-
#[strum(to_string = "Live")]
87
Live,
9-
#[strum(to_string = "Chart")]
108
Log,
119
}
1210

0 commit comments

Comments
 (0)