minor change

This commit is contained in:
ochibani 2022-11-04 06:16:40 +02:00
parent cbcb44de18
commit 3e37cc9a00
3 changed files with 8 additions and 6 deletions

View File

@ -35,6 +35,7 @@
<property name="default-height">412</property>
<property name="default-width">584</property>
<property name="decorated">False</property>
<property name="deletable">False</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
<child type="titlebar">

View File

@ -1,6 +1,7 @@
#area_chooser_window {
background-color: alpha(@theme_selected_bg_color, 0.1);
border: 3px dashed @theme_selected_bg_color;
border-radius: 0px;
}
#area_set_button {

View File

@ -44,7 +44,7 @@ pub fn start_timer(record_time_label: Label) {
glib::source::Continue(false)
}
};
// Execute capture_label every 1sec
// Execute capture_record_label every 1sec
glib::source::timeout_add_seconds_local(1, capture_record_label);
}