diff --git a/repos/gems/src/app/sculpt_manager/model/nic_target.h b/repos/gems/src/app/sculpt_manager/model/nic_target.h index cf0004247..0ecd28226 100644 --- a/repos/gems/src/app/sculpt_manager/model/nic_target.h +++ b/repos/gems/src/app/sculpt_manager/model/nic_target.h @@ -74,7 +74,9 @@ struct Sculpt::Nic_target : Noncopyable bool nic_router_needed() const { return type() != OFF; } - bool ready() const { return type() == WIRED || type() == WIFI; } + bool ready() const { return type() == WIRED || + type() == WIFI || + type() == LOCAL; } }; #endif /* _MODEL__NIC_TARGET_H_ */