Skip to content

Commit d8eab3b

Browse files
committed
fix(commands): adjust settings in activity commands window
Some commands were not visible due to changes IG made
1 parent 5189814 commit d8eab3b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

modules/RepConvGRC.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,7 @@ function _RepConvGRC() {
12871287
_townsDD =
12881288
register(
12891289
'grcrt_towns',
1290-
$('<div/>',{'id':'grcrt_towns','class':'dropdown default','style':'margin-left:5px;width: 180px;'})
1290+
$('<div/>',{'id':'grcrt_towns','class':'dropdown default','style':'margin-left:5px;width: 140px;'})
12911291
.dropdown({
12921292
list_pos : 'left',
12931293
value : (!cmGet('grcrt_townsDD')) ? Options.value : cmGet('grcrt_townsDD').getValue(),
@@ -1306,15 +1306,15 @@ function _RepConvGRC() {
13061306
$('<span/>',{'class':"grcrt_filter"})
13071307
.html(RCGP.getJQElement().find($('#command_filter>span')).html())
13081308
)
1309-
.append(
1310-
$('<span/>',{'class':"overview_incoming icon grcrt_filter"})
1311-
.mousePopup(new MousePopup(RepConvTool.GetLabel('COMMAND.INCOMING')))
1312-
.addClass((parseInt(cmGet('grcrt_FI').getValue())==0)?'grcrt_disabled':'')
1313-
.click(function(){
1314-
$(this).toggleClass('grcrt_disabled'),
1315-
cmGet('grcrt_FI').setValue($(this).hasClass('grcrt_disabled')?'0':'1')
1316-
})
1317-
)
1309+
// .append(
1310+
// $('<span/>',{'class':"overview_incoming icon grcrt_filter"})
1311+
// .mousePopup(new MousePopup(RepConvTool.GetLabel('COMMAND.INCOMING')))
1312+
// .addClass((parseInt(cmGet('grcrt_FI').getValue())==0)?'grcrt_disabled':'')
1313+
// .click(function(){
1314+
// $(this).toggleClass('grcrt_disabled'),
1315+
// cmGet('grcrt_FI').setValue($(this).hasClass('grcrt_disabled')?'0':'1')
1316+
// })
1317+
// )
13181318
.append(
13191319
$('<span/>',{'class':"overview_outgoing icon grcrt_filter"})
13201320
.mousePopup(new MousePopup(RepConvTool.GetLabel('COMMAND.OUTGOING')))
@@ -1333,9 +1333,9 @@ function _RepConvGRC() {
13331333
cmGet('grcrt_FR').setValue($(this).hasClass('grcrt_disabled')?'0':'1')
13341334
})
13351335
)
1336-
.append(
1337-
$('<label/>').text(RepConvTool.GetLabel('COMMAND.FORTOWN'))
1338-
)
1336+
// .append(
1337+
// $('<label/>').text(RepConvTool.GetLabel('COMMAND.FORTOWN'))
1338+
// )
13391339
.append(_townsDD)
13401340
)
13411341
if (parseInt(cmGet('grcrt_townsDD').getValue()) == 0) {

0 commit comments

Comments
 (0)