Skip to content

Commit

Permalink
Add bytes_display and node_color as modules to main
Browse files Browse the repository at this point in the history
  • Loading branch information
salihgerdan committed Mar 10, 2023
1 parent c6d5e53 commit affd6b0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/gui/treemap_widget/imp.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
mod bytes_display;
mod node_color;

use crate::filetree::{Node, NodeID, Tree};
use crate::squarify::{self, GUINode};
use crate::{
bytes_display,
filetree::{Node, NodeID, Tree},
node_color,
squarify::{self, GUINode},
};
use gtk::gdk::RGBA;
use gtk::glib;
use gtk::graphene::{Point, Rect};
Expand Down
2 changes: 2 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
// prevent a command line window on Windows
#![windows_subsystem = "windows"]
mod bytes_display;
mod config;
mod filetree;
mod gui;
mod node_color;
mod squarify;

fn main() {
Expand Down

0 comments on commit affd6b0

Please sign in to comment.