Version 0.2.2

- Add application icon
- Fixes for objects containing multiple
  sections with the same name
This commit is contained in:
2022-12-10 10:34:03 -05:00
parent d1d6f1101b
commit 7219e72acf
12 changed files with 92 additions and 38 deletions

View File

@@ -79,6 +79,11 @@ impl Default for ViewConfig {
}
}
pub struct SymbolReference {
pub symbol_name: String,
pub section_index: usize,
}
#[derive(serde::Deserialize, serde::Serialize)]
#[serde(default)]
pub struct ViewState {
@@ -89,7 +94,7 @@ pub struct ViewState {
#[serde(skip)]
pub highlighted_symbol: Option<String>,
#[serde(skip)]
pub selected_symbol: Option<String>,
pub selected_symbol: Option<SymbolReference>,
#[serde(skip)]
pub current_view: View,
#[serde(skip)]