DListView.OnRowRightClick = function()
local MenuOptions = DermaMenu() // Creates the menu
MenuOptions:AddOption("Kick", function() Msg("Hello") end ) // Add options to the menu
MenuOptions:AddOption("Ban(5)", function() Msg("How") end )
MenuOptions:AddOption("Something", function() Msg("Are") end )
MenuOptions:AddOption("SomethingTwo", function() Msg("You") end )
MenuOptions:AddOption("?", function() Msg("?") end )
MenuOptions:Open() // Open the menu AFTER adding your options
end
end
I can double Click to open -- Which I don't want...
and I can right click columns -- Which I don't want...
How do I stop this?
Right Click does not open DermaMenu