Skip to content

Commit

Permalink
text_area: remove unused min_width, min_height
Browse files Browse the repository at this point in the history
  • Loading branch information
m-stein authored and chelmuth committed Apr 25, 2024
1 parent b75b400 commit 9d78356
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions repos/gems/src/app/text_area/main.cc
Expand Up @@ -37,9 +37,6 @@ struct Text_area::Main : Text_area_widget::Action

Root_directory _vfs { _env, _heap, _config.xml().sub_node("vfs") };

unsigned _min_width = 0;
unsigned _min_height = 0;

Runtime _runtime { _env, _heap };

struct Main_dialog : Top_level_dialog
Expand Down Expand Up @@ -295,9 +292,6 @@ struct Text_area::Main : Text_area_widget::Action

Xml_node const config = _config.xml();

_min_width = config.attribute_value("min_width", 0U);
_min_height = config.attribute_value("min_height", 0U);

bool const copy_enabled = config.attribute_value("copy", false);
bool const paste_enabled = config.attribute_value("paste", false);

Expand Down

0 comments on commit 9d78356

Please sign in to comment.