Skip to content

Commit

Permalink
remove last traces of offsets
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruby-Dragon committed Sep 10, 2024
1 parent 3add73a commit c3feb89
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,6 @@ void load_config(const char *const file) {
options.overlay_height = itmp;
}

if (config_lookup_int(cf, "overlay-offset-top", &itmp) != CONFIG_FALSE) {
options.offset_top = itmp;
}

if (config_lookup_int(cf, "overlay-offset-left", &itmp) != CONFIG_FALSE) {
options.offset_left = itmp;
}

if (config_lookup_bool(cf, "daemonize", &itmp) != CONFIG_FALSE) {
options.daemonize = (bool)itmp;
}
Expand Down

0 comments on commit c3feb89

Please # to comment.