Pārlūkot izejas kodu

ProcessManager: Bump the initial window size to "pretty big"

Andreas Kling 6 gadi atpakaļ
vecāks
revīzija
8a0d77f576

+ 1 - 1
Applications/ProcessManager/ProcessTableModel.cpp

@@ -50,7 +50,7 @@ GTableModel::ColumnMetadata ProcessTableModel::column_metadata(int column) const
     switch (column) {
     case Column::PID: return { 30, TextAlignment::CenterRight };
     case Column::State: return { 80, TextAlignment::CenterLeft };
-    case Column::Priority: return { 80, TextAlignment::CenterLeft };
+    case Column::Priority: return { 75, TextAlignment::CenterLeft };
     case Column::Linear: return { 70, TextAlignment::CenterRight };
     case Column::Physical: return { 70, TextAlignment::CenterRight };
     case Column::CPU: return { 30, TextAlignment::CenterRight };

+ 1 - 1
Applications/ProcessManager/main.cpp

@@ -54,7 +54,7 @@ int main(int argc, char** argv)
 
     auto* window = new GWindow;
     window->set_title("ProcessManager");
-    window->set_rect(20, 200, 320, 300);
+    window->set_rect(20, 200, 600, 400);
     window->set_main_widget(widget);
     window->set_should_exit_app_on_close(true);
     window->show();