def dialog_interfaces_button_macrand_clicked(self, button):
		# Get the selected rows
		model, paths = self.treeview.get_selection().get_selected_rows()
		for path in paths:
			WirelessInterface.get_from_name(model.get(model.get_iter(path), 0)[0]).randomize_mac()
		self.interfaces_update()
		print("[D] DialogInterfaces.dialog_interfaces_button_macrand_clicked(): TODO: Show dialog if no interface is selected...")