diff --git a/main/exercice/question_list_pagination_admin.inc.php b/main/exercice/question_list_pagination_admin.inc.php
index 66ffdf641b..a7f0333691 100644
--- a/main/exercice/question_list_pagination_admin.inc.php
+++ b/main/exercice/question_list_pagination_admin.inc.php
@@ -56,21 +56,21 @@ $column_model = array(
array(
'name' => 'level',
'index' => 'level',
- 'width' => '100',
+ 'width' => '50',
'align' => 'left',
'sortable' => 'false'
),
array(
'name' => 'score',
'index' => 'score',
- 'width' => '100',
+ 'width' => '50',
'align' => 'left',
'sortable' => 'false'
),
array(
'name' => 'actions',
'index' => 'actions',
- 'width' => '100',
+ 'width' => '50',
'align' => 'left',
'formatter' => 'action_formatter',
'sortable' => 'false'
@@ -91,7 +91,7 @@ if ($objExercise->edit_exercise_in_lp == true) {
}
//With this function we can add actions to the jgrid (edit, delete, etc)
$action_links = 'function action_formatter(cellvalue, options, rowObject) {
- return \''.Display::return_icon('edit.png', get_lang('Edit'), '', ICON_SIZE_SMALL).''.
+ return \''.Display::return_icon('edit.png', get_lang('Edit'), '', ICON_SIZE_SMALL).''.
' '.Display::return_icon('cd.gif',get_lang('Copy'), '',ICON_SIZE_SMALL).''.
$delete_link.'\';
}';