|
@@ -268,11 +268,7 @@ bool HackStudioWidget::open_file(const String& full_filename)
|
|
|
current_editor().vertical_scrollbar().set_value(new_project_file->vertical_scroll_value());
|
|
|
current_editor().set_editing_engine(make<GUI::RegularEditingEngine>());
|
|
|
|
|
|
- if (filename.ends_with(".frm")) {
|
|
|
- set_edit_mode(EditMode::Form);
|
|
|
- } else {
|
|
|
- set_edit_mode(EditMode::Text);
|
|
|
- }
|
|
|
+ set_edit_mode(EditMode::Text);
|
|
|
|
|
|
String relative_file_path = filename;
|
|
|
if (filename.starts_with(m_project->root_path()))
|
|
@@ -302,8 +298,6 @@ void HackStudioWidget::set_edit_mode(EditMode mode)
|
|
|
{
|
|
|
if (mode == EditMode::Text) {
|
|
|
m_right_hand_stack->set_active_widget(m_editors_splitter);
|
|
|
- } else if (mode == EditMode::Form) {
|
|
|
- m_right_hand_stack->set_active_widget(m_form_inner_container);
|
|
|
} else if (mode == EditMode::Diff) {
|
|
|
m_right_hand_stack->set_active_widget(m_diff_viewer);
|
|
|
} else {
|