UPDATE: Adds cell and formula editing (#92)
* UPDATE: Adds cell and formula editing * FIX: Do not loose focus when clicking on the formula we are editing * FIX: Minimal implementation of browse mode * FIX: Initial browse mode within sheets * UPDATE: Webapp Minimal Web Application
This commit is contained in:
committed by
GitHub
parent
53d3d5144c
commit
48719b6416
@@ -205,6 +205,16 @@ impl UserModel {
|
||||
self.model.to_bytes()
|
||||
}
|
||||
|
||||
/// Returns the workbook name
|
||||
pub fn get_name(&self) -> String {
|
||||
self.model.workbook.name.clone()
|
||||
}
|
||||
|
||||
/// Sets the name of a workbook
|
||||
pub fn set_name(&mut self, name: &str) {
|
||||
self.model.workbook.name = name.to_string();
|
||||
}
|
||||
|
||||
/// Undoes last change if any, places the change in the redo list and evaluates the model if needed
|
||||
///
|
||||
/// See also:
|
||||
|
||||
Reference in New Issue
Block a user