Skip to content

Commit

Permalink
[Rust - agx] Drop debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
codyd51 committed Mar 23, 2024
1 parent 119ab77 commit dbcffc7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions rust_programs/libgui/src/scroll_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ use alloc::{
rc::{Rc, Weak},
vec::Vec,
};
//use axle_rt::println;
use core::cmp::{max, min};
use core::fmt::Formatter;
use libgui_derive::Drawable;
Expand Down Expand Up @@ -94,7 +93,7 @@ impl LikeLayerSlice for ExpandingLayerSlice {
match fill_mode {
FillMode::Filled => {
for line in
scanline_compute_fill_lines_from_edges(&polygon_stack.lines()).into_iter()
scanline_compute_fill_lines_from_edges(&polygon_stack.lines()).into_iter()
{
// Horizontal line?
if line.p1.y.round() == line.p2.y.round() {
Expand Down Expand Up @@ -846,7 +845,6 @@ impl Bordered for ScrollView {
self.layer.total_content_frame().size,
self.layer.scroll_offset(),
);
println!("{scrollbar_attrs:?}");
scroll_bar_onto.fill_rect(
Rect::from_parts(scrollbar_attrs.origin, scrollbar_attrs.size),
Color::green(),
Expand Down

0 comments on commit dbcffc7

Please sign in to comment.