diff --git a/module/programplan/view/gantt.html.php b/module/programplan/view/gantt.html.php
index 8e9a812d44..b096d6d64a 100644
--- a/module/programplan/view/gantt.html.php
+++ b/module/programplan/view/gantt.html.php
@@ -504,7 +504,7 @@ $(function()
gantt.config.duration_unit = "day";
gantt.config.columns = [];
- gantt.config.columns.push({name: 'text', width: '*', tree: true, resize: true, width:200});
+ gantt.config.columns.push({name: 'text', width: '*', tree: true, resize: true, min_width:120, width:200});
if(showFields.indexOf('PM') != -1) gantt.config.columns.push({name: 'owner_id', align: 'center', resize: true, width: 80, template: function(task){return getByIdForGantt(gantt.serverList('userList'), task.owner_id)}})
if(showFields.indexOf('status') != -1) gantt.config.columns.push({name: 'status', align: 'center', resize: true, width: 80});
gantt.config.columns.push({name: 'start_date', align: 'center', resize: true, width: 80});