Background Knowledge
For some reason or another the priority menu in the edit task panel is not wide enough and therefore it cuts off the priority names. This can be easily fixed by modifying some inline CSS. Yes I agree this should be done within the skin’s CSS file, however there is nothing present in the CSS file to alter that I could find.
Solution
Edit /taskfreak/include/html/xajax_panel_edit.php at line #18 by changing the width value of “40px” to “125px” or to what you desired width.
Code Before
16 17 18 19 |
<td>< ?php $objTemp = new ItemPriority(); $objTemp->qSelect('priority',($objTask->priority)?$objTask->priority:3,'','','style="width:40px"'); ?></td> |
Code After
1 2 3 4 |
<td>< … |