mirror of https://github.com/helix-editor/helix
remove some extra logging
parent
f90f93977d
commit
a92f14709b
|
@ -674,10 +674,10 @@ impl Component for SteelDynamicComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn required_size(&mut self, viewport: (u16, u16)) -> Option<(u16, u16)> {
|
fn required_size(&mut self, viewport: (u16, u16)) -> Option<(u16, u16)> {
|
||||||
let name = self.type_name();
|
// let name = self.type_name();
|
||||||
|
|
||||||
if let Some(required_size) = &mut self.required_size {
|
if let Some(required_size) = &mut self.required_size {
|
||||||
log::info!("Calling required-size inside: {}", name);
|
// log::info!("Calling required-size inside: {}", name);
|
||||||
|
|
||||||
// TODO: Create some token that we can grab to enqueue function calls internally. Referencing
|
// TODO: Create some token that we can grab to enqueue function calls internally. Referencing
|
||||||
// the external API would cause problems - we just need to include a handle to the interpreter
|
// the external API would cause problems - we just need to include a handle to the interpreter
|
||||||
|
|
Loading…
Reference in New Issue