Skip to content

Commit

Permalink
Changelog update.
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelMauderer committed Mar 3, 2023
1 parent 1f1f6b3 commit 3588df0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@
- [The Component Browser icons are cached on texture][5779] improving its
performance on slower machines.
- [Fixed missing result preview when editing nodes.][5757]
- [A new table visualisation is added.][5806] It has a new visual design and
loads data lazily from the backend, which allows it to handle larger datasets
without freezing the IDE.

#### EnsoGL (rendering engine)

Expand Down Expand Up @@ -505,6 +508,7 @@
[5721]: https://github.com/enso-org/enso/pull/5721
[5779]: https://github.com/enso-org/enso/pull/5779
[5757]: https://github.com/enso-org/enso/pull/5757
[5806]: https://github.com/enso-org/enso/pull/5806

#### Enso Compiler

Expand Down
1 change: 1 addition & 0 deletions app/gui/view/examples/text-grid-visualization/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ use ide_view::graph_editor::builtin::visualization::native::text_visualization::
use ide_view::graph_editor::builtin::visualization::native::text_visualization::CHARS_PER_CHUNK;



fn sample_text() -> String {
let mut text = String::new();
for n in (0..1001).rev() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl Model {
pub fn text(&self, width: usize) -> String {
match &self.content {
Content::Text { content, .. } => content.to_string(),
_ => " ".repeat(width),
Content::Divider { top, bottom, left, right } => {}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ use super::GridWindow;
use enso_prelude::serde_reexports::Deserialize;



/// Width of a divider (e.g., space between columns) in the table in characters.
const DIVIDER_WIDTH_IN_CHARS: usize = 3;

Expand Down

0 comments on commit 3588df0

Please sign in to comment.